Documentation
API Reference
Documentation
API Reference
Book a meeting
Linkedin
Github
  1. Api's
  • Introduction
  • Get started
    • Quickstart
    • Authentication
  • Core concepts
    • Agents
    • Phone numbers
    • Calls
    • Webhooks
  • Webhooks
    • Overview
    • Assistant request
    • Tool calls
    • Status update
    • End of call report
    • Security
  • Guides
    • Campaigns
    • xAI Realtime Integration
    • Voice selection psychology
    • Analysis templates
    • BYOK Setup
    • Call analysis
    • Call Transfers
    • Custom Tools
    • Sip Trunks
    • Tool templates
    • Voicemail detection
    • Autonomous silence detection
    • Billing
    • Error codes
    • Rate limits
    • Troubleshooting
  • Api's
    • Campaigns
    • Agents
    • Voices
    • BYOK
    • Analysis templates
    • Tool templates
    • Organization
    • Phone numbers
    • Sip trunks
    • Calls
    • Call control
    • Usage
    • Domains
Documentation
API Reference
Documentation
API Reference
Book a meeting
Linkedin
Github
  1. Api's

Usage

Retrieve usage logs with billing information.

Get Usage Logs#

Retrieve usage logs with optional date filtering.
GET /usage

Query Parameters#

NameTypeDefaultDescription
limitinteger100Max results (max 1000)
offsetinteger0Results to skip
start_datedatetime-Filter from this date (ISO 8601)
end_datedatetime-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
  }
}
See Get Usage Logs for complete details.
Modified at 2026-01-30 12:19:58
Previous
Call control
Next
Domains
Built with