Skip to main content
GET
https://api.bouncy.ai
/
v1
/
account
/
usage
curl https://api.bouncy.ai/v1/account/usage \
  -H "X-Api-Key: bcy_live_pk_YOUR_API_KEY"
{
  "requestsToday": 234,
  "requestsThisHour": 45,
  "totalRequests": 5678,
  "rateLimit": {
    "hourly": 1000,
    "daily": 10000
  },
  "remaining": {
    "hourly": 955,
    "daily": 9766
  },
  "resetAt": {
    "hourly": 1738886400,
    "daily": 1738915200
  }
}

Request

Headers

X-Api-Key
string
required
Your API key (e.g., bcy_live_pk_YOUR_API_KEY)

Response

requestsToday
number
Number of API requests made today
requestsThisHour
number
Number of API requests made in the current hour
totalRequests
number
Total API requests made with this API key (all time)
rateLimit
object
Your rate limits
remaining
object
Remaining requests
resetAt
object
When limits reset
curl https://api.bouncy.ai/v1/account/usage \
  -H "X-Api-Key: bcy_live_pk_YOUR_API_KEY"
{
  "requestsToday": 234,
  "requestsThisHour": 45,
  "totalRequests": 5678,
  "rateLimit": {
    "hourly": 1000,
    "daily": 10000
  },
  "remaining": {
    "hourly": 955,
    "daily": 9766
  },
  "resetAt": {
    "hourly": 1738886400,
    "daily": 1738915200
  }
}