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 workspace voice call logs

GET
https://staging-app.lumenia.net/api/v1/workspace/:slug/voice-integration/call-logs
GET
/api/v1/workspace/:slug/voice-integration/call-logs
$curl https://staging-app.lumenia.net/api/v1/workspace/slug/voice-integration/call-logs \
> -H "X-Account-Id: X-Account-Id" \
> -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}

Returns recorded end-of-call logs for API keys used in an account-scoped integration. Requires X-Account-Id and path workspace slug; the workspace must belong to that account (workspace → organization → account scope). Optionally filter by created_at range. Pagination defaults: limit 50 (max 500), offset 0. Sort order is newest first.

Was this page helpful?
Previous

Mint a WhatsApp Business connect page token

Next
Built with

Authentication

AuthorizationBearer

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

Path parameters

slugstringRequired

Hex-encoded slug of the target workspace.

Headers

X-Account-IdstringRequired

Account uuid for the caller; must belong to the API key partner

Query parameters

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
404
Not Found Error
500
Internal Server Error