> For the complete documentation index, see [llms.txt](https://docs.opinion.trade/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.opinion.trade/developer-guide/opinion-clob-python-sdk/builder-mode/get-quote-tokens.md).

# Get Quote Tokens

> List supported quote tokens (currencies) for trading.

## Usage

```python
response = builder.get_quote_tokens()

tokens = response.result.list
for token in tokens:
    print(f"Address:  {token.quote_token_address}")
    print(f"Exchange: {token.ctf_exchange_address}")
    print(f"Decimals: {token.decimal}")
    print(f"Chain ID: {token.chain_id}")
```

## Parameters

| Parameter   | Type | Required | Description                                                               |
| ----------- | ---- | -------- | ------------------------------------------------------------------------- |
| `use_cache` | bool | No       | Use cached result (default: `True`). Pass `False` to force a fresh fetch. |

## Response

The response object has `response.result.list` containing a list of quote token objects, each with:

| Property               | Type | Description                                 |
| ---------------------- | ---- | ------------------------------------------- |
| `quote_token_address`  | str  | ERC20 token contract address                |
| `ctf_exchange_address` | str  | CTF Exchange contract address               |
| `decimal`              | str  | Token decimal places (e.g., `"6"` for USDC) |
| `chain_id`             | str  | Chain ID (e.g., `"56"`)                     |

## Notes

* Results are cached for 1 hour by default. Use `use_cache=False` to bypass the cache.
* The `quote_token_address` and `decimal` are needed when calculating order amounts for `build_split_tx()` and `build_merge_tx()`.
* The `ctf_exchange_address` is used internally by `build_order_for_signing()` and `build_enable_trading_tx()`.


---

# 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.opinion.trade/developer-guide/opinion-clob-python-sdk/builder-mode/get-quote-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.
