Florida Business API
Endpoints

Current Monthly Usage

Inspect the calling API key's monthly usage, quota, percent used, plan tier, and quota reset timestamp.

GET /api/v1/account/usage

Returns the calling key's current calendar-month usage. Useful for client-side dashboards, quota warning banners, and pre-flight rate-limit budgeting.

Authentication

curl -H "X-API-Key: fbapi_live_..." \
  "https://api.floridabusinessapi.com/v1/account/usage"

Query Parameters

None.

Response (200)

{
  "data": {
    "events_count": 1247,
    "monthly_quota": 10000,
    "percent_used": 12.47,
    "reset_date": "2026-07-01T00:00:00.000Z",
    "plan": "pro"
  },
  "meta": { "request_id": "req_1234567890abcdef12345" }
}
FieldTypeDescription
events_countintegerSuccessful API-usage events counted this calendar month (UTC).
monthly_quotaintegerThe key's monthly quota (per plan tier).
percent_usednumber (2 decimals)events_count / monthly_quota * 100. Zero when quota is unlimited.
reset_dateISO 8601 timestampUTC start of next calendar month (when the counter resets).
planstringPlan tier (e.g. free, pro, enterprise).

Error Responses

StatusCodeCause
401unauthorizedMissing or invalid API key.
429rate_limitedRate limit exceeded.
500internal_errorServer error — retry with backoff.

On this page