For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Contact us
DocumentationAPI Reference
DocumentationAPI Reference
  • Authentication
    • GETVerify API key
  • Documents
    • POSTUpload document
    • POSTUpload document into folder
    • GETList documents
    • GETList documents in folder
    • GETGet document
    • POSTCreate folder
    • DELDelete folder
    • POSTMove documents between folders
    • DELDelete documents
  • Workspaces
    • GETGet workspace
    • DELDelete workspace
    • POSTUpdate workspace
    • POSTAdd or remove workspace embeddings
    • GETList workspace tools
    • POSTAttach tool to workspace
    • DELDetach tool from workspace
  • Number Requests
    • GETList number requests
    • POSTRequest a phone number
    • GETGet number request
  • Numbers
    • GETList phone numbers
    • GETList phone numbers in organization
  • Organizations
    • GETList organizations
    • POSTCreate organization
    • GETGet organization
    • DELDelete organization
    • POSTUpdate organization
    • GETList workspaces in organization
    • POSTCreate workspace
    • GETList organization tools
    • POSTCreate organization tool
    • DELDelete organization tool
    • PATCHUpdate organization tool
  • Accounts
    • GETList accounts
    • POSTCreate account
  • Voice Integration
    • GETGet voice assistant config
    • PATCHUpdate voice assistant config
    • GETGet voice integration catalog
    • POSTProvision voice integration
    • GETList voice call logs
    • GETList workspace voice call logs
  • Whats App Integration
    • POSTMint a WhatsApp Business connect page token
    • GETRender WhatsApp Business connect iframe page
    • POSTFinalize WhatsApp Business onboarding (iframe-initiated)
    • DELDisconnect WhatsApp Business integration
Contact us
LogoLogo
Voice Integration

List voice call logs

GET
https://staging-app.lumenia.net/api/v1/voice-integration/call-logs
GET
/api/v1/voice-integration/call-logs
$curl https://staging-app.lumenia.net/api/v1/voice-integration/call-logs \
> -H "Authorization: Bearer <token>"
1{
2 "callLogs": [
3 {
4 "id": 1,
5 "cost_total": 0.12,
6 "stt": 0.01,
7 "llm": 0.05,
8 "tts": 0.03,
9 "vapi": 0.03,
10 "duration_seconds": 45,
11 "customer_number": "+15551234567",
12 "assistant": "asst_xxx",
13 "summary": "Caller asked about hours.",
14 "vapi_call_id": "...",
15 "workspace_id": 3,
16 "created_at": "2026-04-27T12:00:00.000Z"
17 }
18 ]
19}

Partner-scoped listing of recorded end-of-call logs. The partner is derived from the API key; only logs whose workspace belongs to an organization under an account owned by that partner are returned. Optionally filter with workspace_slug and/or created_at range. Pagination defaults: limit 50 (max 500), offset 0. Sort order is newest first.

Was this page helpful?
Previous

List workspace voice call logs

Next
Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

workspace_slugstringOptional

If set, only logs linked to this workspace slug (optional narrowing on the global admin list). Note: use the original (raw) slug here, not the hex-encoded slug in the path.

limitintegerOptional

Page size (default 50, maximum 500)

offsetintegerOptional
Rows to skip for pagination
afterstringOptional

ISO 8601 lower bound on created_at (inclusive)

beforestringOptional

ISO 8601 upper bound on created_at (inclusive)

Response

Call logs retrieved
callLogslist of objects

Errors

400
Bad Request Error
403
Forbidden Error
500
Internal Server Error