***

title: create
slug: /reference/typescript/rest/compat/faxes/create
description: Send a new fax.
max-toc-depth: 3
---------------------

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

Send a new fax.

<EndpointSchemaSnippet endpoint="POST /Accounts/{AccountSid}/Faxes" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /Accounts/{AccountSid}/Faxes" />

## **Example**

```typescript {8}
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.compat.faxes.create({
  To: "+15559876543",
  From: "+15551234567",
  MediaUrl: "https://example.com/document.pdf",
});
```