Skip to main content
POST
/
wallet_balance
Check wallet balance
curl --request POST \
  --url https://modelslab.com/api/wallet_balance \
  --header 'Content-Type: application/json' \
  --data '
{
  "key": "<string>"
}
'
{
  "status": "success",
  "data": {
    "balance": 43.6,
    "currency": "USD"
  }
}
This endpoint allows users to check their current wallet balance.

Request

Send a POST request to below endpoint.
curl
--request POST 'https://modelslab.com/api/wallet_balance' \

Body

json
{
  "key": "your_api_key"
}

Response

json
{
    "status": "success",
    "data": {
        "balance": 43.6,
        "currency": "USD"
    }
}

Body

application/json
key
string
required

Your API Key used for request authorization

Response

Wallet balance response

status
enum<string>
Available options:
success
data
object