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
| Status | Meaning |
|---|---|
401 | Missing or invalid API key |
403 | Valid key, insufficient permissions |
429 | Rate 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.