Get account
/v1/accountReturns the user's identity, all active subscriptions, and a static rate-limit catalog.
Pass Authorization: Bearer <api_key>. Preferred for new integrations.
In: header
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/account" \ -H "Authorization: Bearer YOUR_API_KEY"{ "user_id": 4823, "email": "client@example.com", "company": "Acme Trading", "plans": [ { "id": "professional", "name": "Professional", "status": "active", "billing_period_start": "2026-04-01T00:00:00Z", "billing_period_end": "2026-05-01T00:00:00Z", "renews_at": "2026-05-01T00:00:00Z" } ], "rate_limits": { "account": { "limit": 60, "window_seconds": 60 }, "usage": { "limit": 60, "window_seconds": 60 }, "events_search": { "limit": 6, "window_seconds": 60 }, "salesdata": { "limit": 500, "window_seconds": 60 }, "listings": { "limit": 500, "window_seconds": 60 }, "events_stats": { "limit": 300, "window_seconds": 60 }, "daily_csv": { "limit": 10, "window_seconds": 3600 } }}API Reference
Full reference for the SeatData API — endpoints, parameters, and request/response examples.
Get usage GET
Returns API call counts for the current billing period, plus a per-endpoint breakdown showing which endpoints have the most usage. - `period_start` - start of the current billing cycle. - `period_end` - end of the current billing cycle (next renewal date). - `totals` - counts of calls in `[period_start, now]`. Right after a renewal, all counts will be near 0. For accounts created before billing-period tracking was added, the window may fall back to a rolling 30-day lookback. No charge per call.