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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
