> For the complete documentation index, see [llms.txt](https://rwaperp-1.gitbook.io/rwaperp-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rwaperp-1.gitbook.io/rwaperp-docs/rwa-perp-b2b-api/rest-api-reference/public-market-data/get-v1-public-token.md).

# get v1 public token

`GET /v1/public/token`

**Authentication:** None

**Rate limit:** 10 requests per second per IP address

## Description

Retrieves the available tokens to be used as collateral as collateral.

## Parameters

| Name       | Location | Type   | Required | Description                 | Example |
| ---------- | -------- | ------ | -------- | --------------------------- | ------- |
| `chain_id` | query    | string | No       | Filter results by chain\_id | —       |

## Responses

### HTTP 200

OK

| Field                                                     | Type    | Required | Description                                                                                                     |
| --------------------------------------------------------- | ------- | -------- | --------------------------------------------------------------------------------------------------------------- |
| `success`                                                 | boolean | Yes      | Indicates whether the request was successful. Example: `True`                                                   |
| `timestamp`                                               | integer | No       | Server timestamp in milliseconds. Example: `1702989203989`                                                      |
| `data`                                                    | object  | Yes      | —                                                                                                               |
| `data.rows`                                               | array   | Yes      | —                                                                                                               |
| `data.rows[].token`                                       | string  | No       | name of token Example: `ETH`                                                                                    |
| `data.rows[].base_weight`                                 | number  | No       | 1 for usdc Example: `0.8`                                                                                       |
| `data.rows[].discount_factor`                             | number  | No       | null for usdc Example: `0.02`                                                                                   |
| `data.rows[].haircut`                                     | number  | No       | 0 for usdc Example: `0.95`                                                                                      |
| `data.rows[].user_max_qty`                                | number  | No       | -1 = infinity > usdc Example: `111`                                                                             |
| `data.rows[].is_collateral`                               | boolean | No       | True, the asset can be collateral, users are allowed to manually swap, and we will do auto-swap Example: `True` |
| `data.rows[].decimals`                                    | number  | No       | precision of the token Example: `6`                                                                             |
| `data.rows[].minimum_withdraw_amount`                     | number  | No       | Example: `1e-06`                                                                                                |
| `data.rows[].on_chain_swap`                               | boolean | No       | True, the asset is eligible for on-chain swaps on at least one supported blockchain Example: `True`             |
| `data.rows[].token_hash`                                  | string  | No       | Example: `0xd6aca1be9729c13d677335161321649cccae6a591554772516700f986f942eaa`                                   |
| `data.rows[].chain_details`                               | array   | No       | —                                                                                                               |
| `data.rows[].chain_details[].chain_id`                    | integer | No       | Example: `43113`                                                                                                |
| `data.rows[].chain_details[].contract_address`            | string  | No       | Example: `0x5d64c9cfb0197775b4b3ad9be4d3c7976e0d8dc3`                                                           |
| `data.rows[].chain_details[].cross_chain_withdrawal_fee`  | integer | No       | Example: `0`                                                                                                    |
| `data.rows[].chain_details[].decimals`                    | integer | No       | Example: `18`                                                                                                   |
| `data.rows[].chain_details[].withdraw_fee`                | number  | No       | Example: `2`                                                                                                    |
| `data.rows[].chain_details[].display_name`                | string  | No       | `USDC.e` for `Mantle` chain Example: `ETH`                                                                      |
| `data.rows[].chain_details[].exclusive_deposit_supported` | boolean | No       | Whether this token on this chain supports deposit via exclusive receiver address. Example: `False`              |


---

# 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://rwaperp-1.gitbook.io/rwaperp-docs/rwa-perp-b2b-api/rest-api-reference/public-market-data/get-v1-public-token.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.
