***

title: create
slug: /reference/typescript/rest/project/create
description: Create a new API token for the project.
max-toc-depth: 3
---------------------

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

### tokens.create

Create a new API token for the project.

<EndpointSchemaSnippet endpoint="POST /api/project/tokens" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/project/tokens" />

## **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 token = await client.project.tokens.create({ name: "ci-token" });
console.log("Token:", token["token"]);
console.log("ID:", token.id);
```