List rate limits
List all rate limits for the project.
Authorization
Bearer AuthorizationBearer <token>
Project API key
In: header
Query Parameters
limit?string
Maximum number of rate limits to return (1-100, default: 50)
Default
"50"cursor?string
Pagination cursor from the previous response
Response Body
application/json
application/json
application/json
curl -X GET "https://api.limitry.com/v1/rate-limits"{
"data": [
{
"id": "rl_abc123",
"projectId": "proj_xyz",
"name": "Customer API limit",
"dimensionFilters": {
"customer_id": "cust_123"
},
"limitValue": 100,
"window": "1h",
"enabled": true,
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:30:00Z"
}
],
"nextCursor": "rl_xyz789",
"hasMore": true
}{
"error": "Invalid request"
}{
"error": "Invalid or missing API key"
}