***

title: get
slug: /reference/python/rest/video/conference-tokens/get
description: Retrieve a specific conference token.
max-toc-depth: 3
---------------------

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

Retrieve a specific conference token.

<EndpointSchemaSnippet endpoint="GET /api/video/conference_tokens/{id}" />

## **Response Example**

<EndpointResponseSnippet endpoint="GET /api/video/conference_tokens/{id}" />

## **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.video.conference_tokens.get("token-id")
```