Skip to main content
GET
https://api.modelhunter.ai
/
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,
    "currency": "USD",
    "pending_charges": 0,
    "credit_limit": null,
    "billing_mode": "prepaid"
  }
}

Response Fields

success
boolean
Whether the request was successful.
data
object
Account balance details.
{
  "success": true,
  "data": {
    "balance": 45.00,
    "currency": "USD",
    "pending_charges": 0,
    "credit_limit": null,
    "billing_mode": "prepaid"
  }
}