Skip to main content
GET
/
api
/
usage
/
summary
Get aggregated usage summary
curl --request GET \
  --url https://api.example.com/api/usage/summary \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "endpoint": "<string>",
      "total_requests": 123,
      "total_errors": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Query Parameters

start_date
string<date>
required

Start date (inclusive), ISO 8601 date format

Example:

"2026-01-01"

end_date
string<date>
required

End date (inclusive), ISO 8601 date format

Example:

"2026-01-31"

client_id
string

Client ID to query (admin only — M2M tokens see own usage only)

Response

Usage summary by endpoint

data
object[]
required