Rate Limits
For security purposes, all endpoints are rate-limited and allow 6 requests / minute.
You can expect to receive an HTTP 429: Too Many Requests
error on breaching this limit. A typical error looks like:
{
"status": "429",
"title": "Too Many Requests",
"detail": "You are exceeding the permitted number of requests allowed per minute.",
"meta": {
"quotaPerMinute": 6,
"expiresIn": 54518
}
}