> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rialto.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Supported Tokens

> Discover the tokens supported by the quote and swap APIs.

## Endpoint

```http theme={null}
GET /tokens
```

Auth: public. Returns the tokens supported by the quote and swap APIs.

```bash theme={null}
curl -sS 'https://rialto-trade-api.rialto.xyz/tokens'
```

## Response

```json theme={null}
{
  "chain_id": 42161,
  "tokens": [
    {
      "name": "ETH",
      "symbol": "ETH",
      "address": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
      "decimals": 18,
      "source": "constant",
      "type": "non_stable"
    },
    {
      "name": "Wrapped Ether",
      "symbol": "WETH",
      "address": "0x82af49447d8a07e3bd95bd0d56f35241523fbab1",
      "decimals": 18,
      "source": "whitelist",
      "type": "non_stable"
    }
  ]
}
```

## Token fields

| Field    | Description                              |
| -------- | ---------------------------------------- |
| name     | Token display name.                      |
| symbol   | Token symbol.                            |
| address  | Token contract address.                  |
| decimals | Token decimals.                          |
| source   | How the token entered the supported set. |
| type     | stable or non\_stable.                   |

Use a token's symbol or address as the sell or buy token when requesting a quote.
