> For the complete documentation index, see [llms.txt](https://docs.ospree.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ospree.io/developers/travel-rule/api-endpoints/list-tokens.md).

# 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 %}
