Skip to main content
POST
/
v1
/
me
/
rate_limit
/
request
Request Rate Limit Increase
curl --request POST \
  --url https://api.example.com/v1/me/rate_limit/request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "rate_limit": 123,
  "reason": "<string>",
  "tpm_rate_limit": 123
}
'
{
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

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

Headers

xi-api-key
string | null

Body

application/json
rate_limit
integer
required
reason
string
required
Maximum string length: 2048
tpm_rate_limit
integer | null

Response

Successful Response