## Rate limits `GET https://getkollek.com/api/collections` Authenticated endpoints are limited to 60 requests per minute per user. The register and login endpoints are limited to 6 requests per minute. Requests over the limit return 429 with a Retry-After header telling you how many seconds to wait. ### Example request ```bash curl https://getkollek.com/api/collections \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 429` ```json { "message": "Too Many Attempts." } ```