Rate Limiting
Last updated
HTTP/1.1 429 Too Many Requests
Content-Type: application/json
Retry-After: 60
{
"error": "Rate limit exceeded",
"message": "You have exceeded the rate limit. Please wait before making more requests."
}GET /v1/investmentsHTTP/1.1 200 OK
Content-Type: application/json
X-RateLimit-Limit: 100
X-RateLimit-Remaining: 99
X-RateLimit-Reset: 1629478800
{
"data": "..."
}GET /v1/investmentsHTTP/1.1 429 Too Many Requests
Content-Type: application/json
Retry-After: 60
{
"error": "Rate limit exceeded",
"message": "You have exceeded the rate limit. Please wait before making more requests."
}