***

title: create
slug: /reference/python/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**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

token = client.project.tokens.create(name="ci-token")
print("Token:", token.get("token"))
print("ID:", token.get("id"))
```