Get Rate Limit

Return information about the rate limit currently applied to you.

Role

All

Method

GET

URL

/api/v2/rateLimit

Response example

Status Line / Response Header

HTTP/1.1 200 OK
Content-Type:application/json;charset=utf-8

Response Body

{
  "rateLimit": {
    "read": {
      "limit": 600,
      "remaining": 600,
      "reset": 1603881873
    },
    "update": {
      "limit": 150,
      "remaining": 150,
      "reset": 1603881873
    },
    "search": {
      "limit": 150,
      "remaining": 150,
      "reset": 1603881873
    },
    "icon": {
      "limit": 60,
      "remaining": 60,
      "reset": 1603881873
    }
  }
}