# List Tokens

<mark style="color:green;">`GET`</mark>  `/api/v2/travelrule/tokens`

Returns a list of tokens supported by the Ospree Travel Rule module. Each token entry includes metadata such as the DTI, DTI short name (symbol), and the associated chain name. This ensures clients can accurately select the correct token when creating a Travel Rule transfer.<br>

### Query Parameters

<table><thead><tr><th width="245.671875">Name</th><th>Type</th><th width="247.37109375">Description</th><th>Required</th></tr></thead><tbody><tr><td><code>page</code></td><td>integer</td><td><p>The current page number in pagination. </p><p></p><p>Minimum: <mark style="color:orange;"><code>1</code></mark></p><p>Default: <mark style="color:orange;"><code>1</code></mark></p></td><td>false</td></tr><tr><td><code>size</code></td><td>integer</td><td><p>The size or number of records per page. </p><p></p><p>Minimum: <mark style="color:orange;"><code>1</code></mark></p><p>Default: <mark style="color:orange;"><code>50</code></mark></p></td><td>false</td></tr><tr><td><code>chain</code></td><td>string</td><td><p>Filter results by chain. </p><p></p><p>Example: <mark style="color:orange;"><code>bitcoin</code></mark></p></td><td>false</td></tr><tr><td><code>symbol</code></td><td>string</td><td><p>Filter results by token symbol.  </p><p></p><p>Example: <mark style="color:orange;"><code>BTC</code></mark></p></td><td>false</td></tr></tbody></table>

{% tabs %}
{% tab title="RESPONSE" %}

```json
{
    "status": "success",
    "data": {
        "items": [
            {
                "chain": "bitcoin",
                "symbol": "BTC",
                "name": "Bitcoin",
                "dti": "4H95J0R2X",
                "contract": null
            },
            {
                "chain": "solana",
                "symbol": "SOL",
                "name": "Solana",
                "dti": "20J63Z4N3",
                "contract": null
            },
            {
                "chain": "stellar",
                "symbol": "XLM",
                "name": "Stellar",
                "dti": "C4SRNZD8K",
                "contract": null

        ],
        "total": 3,
        "page": 1,
        "size": 50
    }
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ospree.io/ospree-api/travel-rule/api-endpoints/list-tokens.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
