***

title: list_conference_tokens
slug: /reference/python/rest/video/conferences/list-conference-tokens
description: List tokens associated with a conference.
max-toc-depth: 3
---------------------

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

List tokens associated with a conference.

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

## **Response Example**

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

## **Example**

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

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

tokens = client.video.conferences.list_conference_tokens("conference-id")
```