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/usageResponse
json
{
"team": "Acme Corp",
"plan": "growth",
"usage": {
"used": 45,
"limit": 500,
"remaining": 455
}
}Response fields
| Field | Type | Description |
|---|---|---|
| team | string | Your team name |
| plan | string | Current plan (starter, growth, scale) |
| usage.used | number | Requests used this month |
| usage.limit | number | Monthly request limit |
| usage.remaining | number | Requests remaining |
Related guides
- API ReferenceAuthenticationHow to authenticate with the Buska API. Generate an API key from Settings > API, pass it as x-api-key header. OAuth 2.1 also supported for third-party apps.
- API ReferencePOST /v1/mentions/searchSearch social media mentions on a specific platform. Returns posts with content, author, URL, engagement. Used for real-time lead scraping.