Check wallet balance
curl --request POST \
--url https://modelslab.com/api/wallet_balance \
--header 'Content-Type: application/json' \
--data '
{
"key": "<string>"
}
'{
"data": {
"balance": 43.6,
"currency": "USD"
}
}General APIs
Check Wallet Balance
Check your current wallet balance.
POST
/
wallet_balance
Check wallet balance
curl --request POST \
--url https://modelslab.com/api/wallet_balance \
--header 'Content-Type: application/json' \
--data '
{
"key": "<string>"
}
'{
"data": {
"balance": 43.6,
"currency": "USD"
}
}This endpoint allows users to check their current wallet balance.Documentation Index
Fetch the complete documentation index at: https://docs.modelslab.com/llms.txt
Use this file to discover all available pages before exploring further.
Request
Send aPOST 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"
}
}
Was this page helpful?
⌘I

