Skip to main content
GET
/
api
/
v1
/
balance
Get Balance
curl --request GET \
  --url https://api.modelhunter.ai/api/v1/balance \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "balance": 45.00,
    "billingMode": "prepaid",
    "monthlySpendLimit": null,
    "autoTopUpEnabled": false,
    "autoTopUpThreshold": null,
    "autoTopUpAmount": null
  }
}

Response Fields

success
boolean
Whether the request was successful.
data
object
Account balance details.
{
  "success": true,
  "data": {
    "balance": 45.00,
    "billingMode": "prepaid",
    "monthlySpendLimit": null,
    "autoTopUpEnabled": false,
    "autoTopUpThreshold": null,
    "autoTopUpAmount": null
  }
}