Skip to main content
GET
/
developers
/
limits
Get rate limits
curl --request GET \
  --url https://api.txcloud.io/v1/developers/limits \
  --header 'Authorization: Bearer <token>'
{
  "plan": "<string>",
  "limits": {
    "requests_per_minute": 123,
    "requests_per_day": 123,
    "concurrent_requests": 123
  },
  "current_usage": {},
  "by_endpoint": {}
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Rate limits

plan
string
limits
object
current_usage
object
by_endpoint
object