ZeeMaps API Docs v1

Rate limits

Rate limits are enforced per API key.

Response headers

Every response includes the current limit state:

Header Meaning
X-RateLimit-Limit Requests allowed per minute for this key.
X-RateLimit-Remaining Requests left in the current window.
X-RateLimit-Reset Unix timestamp (seconds) when the window resets.
HTTP/1.1 200 OK
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 57
X-RateLimit-Reset: 1782403260

When you exceed the limit

The API returns 429 RATE_LIMITED with a Retry-After header (seconds until the window resets):

HTTP/1.1 429 Too Many Requests
Retry-After: 24
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 0
X-RateLimit-Reset: 1782403260

{ "error": { "code": "RATE_LIMITED", "message": "Rate limit exceeded. Retry after 24s." } }

Backoff guidance