Retrieve usage logs with billing information.Get Usage Logs#
Retrieve usage logs with optional date filtering.Query Parameters#
| Name | Type | Default | Description |
|---|
limit | integer | 100 | Max results (max 1000) |
offset | integer | 0 | Results to skip |
start_date | datetime | - | Filter from this date (ISO 8601) |
end_date | datetime | - | Filter until this date (ISO 8601) |
Request#
Response#
{
"logs": [
{
"id": "log-uuid-here",
"call_id": "call-_+31612345678_abc123",
"duration_seconds": 84,
"minutes_used": 2,
"cost": 0.10,
"created_at": "2025-12-13T10:01:24.000Z"
}
],
"pagination": {
"total": 50,
"limit": 100,
"offset": 0
},
"summary": {
"total_minutes": 120,
"total_cost": 6.00,
"total_calls": 50
}
}
Modified at 2025-12-29 14:19:57