GET /v1/usage

Returns your current API usage and plan information.

Use case: Use this to monitor your API quota before making bulk requests, or to display usage info in your own dashboard.

Request

bash
curl -H "x-api-key: YOUR_KEY" https://api.buska.io/api/v1/usage

Response

json
{
      "team": "Acme Corp",
      "plan": "growth",
      "usage": {
        "used": 45,
        "limit": 500,
        "remaining": 455
      }
    }

Response fields

FieldTypeDescription
teamstringYour team name
planstringCurrent plan (starter, growth, scale)
usage.usednumberRequests used this month
usage.limitnumberMonthly request limit
usage.remainingnumberRequests remaining

Related guides