Updated Jul 14, 2026
On this page

Token Authentication

All API endpoints require an Authorization header with a bearer token.

Header format

Authorization: Token <your-token-hex>

Example

curl -H "Authorization: Token abc123def456" \
  https://i-gaming.tools/api/v1/providers/pragmatic-play/

Token lifecycle

  • Tokens do not expire by default.
  • A token can be revoked via DELETE /api/v1/account/api-keys/.
  • Each token is scoped to one user account.

Error responses

Code Meaning
401 Missing or invalid token
402 Quota exhausted (monthly free tier or paid balance depleted)
429 Technical rate limit exceeded (requests/minute)

See Rate Limits for quota and throttle details.