Complete API reference for zerocut.gg
Complete API reference for zerocut.gg user-facing API.
All API requests require an API key passed in the x-api-key header:
curl -H "x-api-key: zerocut.your_api_key_here" \
https://zerocut.gg/api/v1/profile/getYou can create and manage API keys in your dashboard settings.
The API enforces a sliding window rate limit of 60 requests per minute per user account. All API keys belonging to the same account share this limit.
Every API response includes rate limit headers:
| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests allowed per window (60) |
X-RateLimit-Remaining | Requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp (seconds) when the window resets |
When the limit is exceeded, the API returns a 429 Too Many Requests response with an additional Retry-After header indicating how many seconds to wait:
{
"error": "Rate limit exceeded. Please try again later.",
"code": "TOO_MANY_REQUESTS"
}X-RateLimit-Remaining header and back off before hitting 0Retry-After header to schedule retries after a 429 response