Rate Limit API

Get your current rate limit status

The rate limits with context “scim” are applied to all SCIM API requests. All other API requests get the rate limits with context “core” applied.

Accessing this endpoint does not count against your rate limit, but accessing this endpoint is limited to once per second.

GET /rate_limit

Response

Status: 200 OK
Content-Type: application/json; charset=utf-8
{
  "resources": [
    {
      "context": "core",
      "limit": 20,
      "remaining": 20,
      "reset": 1533873908
    },
    {
      "context": "core",
      "limit": 3600,
      "remaining": 3586,
      "reset": 1533875602
    },
    {
      "context": "scim",
      "limit": 10,
      "remaining": 10,
      "reset": 1533873209
    },
    {
      "context": "scim",
      "limit": 36000,
      "remaining": 36000,
      "reset": 1533876808
    }
  ]
}

Fields

context
The context in which the rate limit window is enforced.
limit
The maximum number of requests permitted to make in the rate limit window.
remaining
The number of requests remaining in the rate limit window.
reset
The time at which the rate limit window resets in UTC epoch seconds.