Server SDKs
Build AI agents, control calls, send messages, and more
Query voice call log entries. Voice logs provide a read-only view of call activity in your project, including per-call event timelines.
Access via client.logs.voice on a RestClient instance.
client.logs.voice
RestClient
1import { RestClient } from "@signalwire/sdk";23const client = new RestClient({4 project: "your-project-id",5 token: "your-api-token",6 host: "your-space.signalwire.com"7});89const logs = await client.logs.voice.list({ pageSize: 5 });10for (const log of logs.data ?? []) {11 console.log(log.id, log.from, "->", log.to);12}
List voice call log entries.
Retrieve a specific voice log entry.
List events for a specific voice call.