***

title: get
slug: /reference/typescript/rest/logs/fax/get
description: Retrieve a specific fax 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 fax log entry.

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

## **Response Example**

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

## **Example**

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

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

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