Client usage daily
GET /client/{id}/usage
Get a client's daily usage
Authorization
bearer AuthorizationBearer <token>
In: header
Path Parameters
id*string
Internal client UUID (the id field returned by client list / detail endpoints, NOT the public clientId).
Query Parameters
days?string
Lookback window in days (1–365, default 30).
Response Body
application/json
application/json
application/json
curl -X GET "https://api.part3.io/v1/client/4f5e6d7c-8b9a-4d2e-a3f5-678c9d0e1f2a/usage"{
"totalRequests": 14280,
"totalErrors": 47,
"avgResponseTimeMs": 138.42,
"daily": [
{
"date": "2026-04-21",
"requests": 388,
"errors": 2,
"avgResponseTimeMs": 134.1
},
{
"date": "2026-04-22",
"requests": 412,
"errors": 3,
"avgResponseTimeMs": 138.42
}
],
"endpoints": [
{
"endpoint": "GET /v1/document",
"count": 8421,
"errors": 14,
"averageResponseTimeMs": 142.18
},
{
"endpoint": "GET /v1/organization/:orgId/project",
"count": 3192,
"errors": 8,
"averageResponseTimeMs": 91.04
}
]
}{
"error": "Client token required"
}{
"error": "Client token required"
}