Example DocsExample Docs

Authentication

API keys

Every request must include an API key in the Authorization header:

curl https://api.example.com/v1/docs \
  -H "Authorization: Bearer YOUR_API_KEY"

Never commit API keys to a repository β€” this fixture page is illustrative only, there’s no real API behind it.

Errors

StatusMeaning
401Missing or invalid API key
403Valid key, insufficient permissions
429Rate limit exceeded

Rate limits

Requests are limited per API key. Exceeding the limit returns a 429 with a Retry-After header indicating how many seconds to wait before retrying.