GET
/
v1
/
quota
Quota status (authenticated client)
curl --request GET \
  --url https://api.hofj.com/v1/quota \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "clientId": "<string>",
    "backend": "firestore",
    "limitPerMinute": 123,
    "usedInWindow": 123,
    "remainingInWindow": 123,
    "windowStartedAt": "2023-11-07T05:31:56Z",
    "windowEndsAt": "2023-11-07T05:31:56Z",
    "message": "<string>"
  }
}

Authorizations

Authorization
string
header
default:dev-internal-api-key
required

Use Authorization: Bearer <access_token> from POST /v1/oauth/token, or Authorization: Bearer <api_key>. Dev-only example key (do not use in production): see repository README.

Response

Quota snapshot

data
object