Skip to main content
GET
/
limits
Get rate limit information for the authorized organization.
curl --request GET \
  --url https://api.ragkit.com/v1/limits \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "primary": {
      "remaining": 512,
      "window": 60
    }
  }
}
All endpoints that require Authorization contribute to rate limits, including this endpoint.

Default Limits

These are the standard limits applied at the organization level.
NameLimitWindowRate
Primary60060s10 requests per second

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Success

success
enum<boolean>
required

Always true.

Available options:
true,
false
data
object
required

Information about the authorized Org's rate limits.