List quotas

List all quotas for the project.

GET
/quotas
AuthorizationBearer <token>

Project API key

In: header

Query Parameters

limit?string

Maximum number of quotas 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/quotas"
{
  "data": [
    {
      "id": "qta_abc123",
      "projectId": "proj_xyz",
      "name": "Daily Token Limit",
      "dimensionFilters": {
        "customer_id": "cust_123"
      },
      "metric": "total_tokens",
      "limitValue": 100000,
      "period": "day",
      "createdAt": "2024-01-15T10:30:00Z",
      "updatedAt": "2024-01-15T10:30:00Z"
    }
  ],
  "nextCursor": "qta_xyz789",
  "hasMore": true
}
{
  "error": "Invalid request"
}
{
  "error": "Invalid or missing API key"
}