GET
/
api
/
rate-limits
curl --request GET \
  --url https://pos-integration.robotpos.com/realtimeapi/api/rate-limits \
  --header 'Authorization: Bearer <token>'
{
  "limits": [
    {
      "key": "default",
      "limit": 100,
      "remaining": 95,
      "resetTime": "2024-01-01T00:00:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful response

The response is of type object.