***

title: get
slug: /reference/typescript/rest/logs/voice/get
description: Retrieve a specific voice log entry.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Retrieve a specific voice call log entry.

<EndpointSchemaSnippet endpoint="GET /api/voice/logs/{id}" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/voice/logs/{id}" />

## **Example**

```typescript {9-10}
import { RestClient } from "@signalwire/sdk";

const client = new RestClient({
  project: "your-project-id",
  token: "your-api-token",
  host: "your-space.signalwire.com"
});

const call = await client.logs.voice.get("voice-log-id");
console.log(call.from, "->", call.to, call.duration);
```