> For the complete documentation index, see [llms.txt](https://docs.openliq.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.openliq.com/developer/apis/get-tokens.md).

# Get /tokens

**path**

> /trade/tokens

**params**

| Name        | type   | need | Description                               |
| ----------- | ------ | ---- | ----------------------------------------- |
| chainId     | string | √    |                                           |
| type        | string | √    | cross or swap                             |
| page        | number |      |                                           |
| size        | number |      |                                           |
| fromChainId | string |      | the chainId of the source chain, Optional |

**result**

```typescript
//the token without price,amount,chainName
type Response = {
    errno: number,
    message: string,
    data: {
        count: number,
        page: number,
        size: number,
        items: Token[]
    }
}
```
