> For the complete documentation index, see [llms.txt](https://docs-bridgers-en.bridgers.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-bridgers-en.bridgers.xyz/bridgers-api-endpoints/get-coins-list.md).

# Get coins list

### Endpoint usage

<mark style="color:green;">`POST`</mark> `https://api.bridgers.xyz/api/exchangeRecord/getToken`

|       |        |                                                                                                                                                  |
| ----- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| Name  | Type   | Description                                                                                                                                      |
| chain | String | chain name: ETH,BSC,HECO,POLYGON,OKEXCHAIN,TRX,FTM,ARB,AVAXC,Optimism,CRONOS,APT,ZKSYNC,MNT,CORE,SUI,CFX,BASE,opBNB,zkEVM,SCROLL,SOL,LINEA,Blast |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
  "resCode":"100",
  "resMsg":"Success",
  "data":{
      "tokens":[{"chain":"ETH","symbol":"USDT","name":"Tether USD","address":"0xdac17f958d2ee523a2206206994597c13d831ec7","decimals":6,"logoURI":"https://images.swft.pro/inch1/0xdac17f958d2ee523a2206206994597c13d831ec7.png","isCrossEnable":"1","withdrawGas":"40"},{"chain":"BSC","symbol":"USDT","name":"Tether USD","address":"0x55d398326f99059ff775485246999027b3197955","decimals":18,"logoURI":"https://images.swft.pro/inch1/0xdac17f958d2ee523a2206206994597c13d831ec7.png","isCrossEnable":"1","withdrawGas":"0.1"},{"chain":"HECO","symbol":"USDT","name":"Heco-Peg USDTHECO Token","address":"0xa71edc38d189767582c38a3145b5873052c3e47a","decimals":18,"logoURI":"https://images.swft.pro/heco/0xa71edc38d189767582c38a3145b5873052c3e47a.png","isCrossEnable":"1","withdrawGas":"0.1"},{"chain":"POLYGON","symbol":"USDT","name":"USDT(MATIC)","address":"0xc2132d05d31c914a87c6611c10748aeb04b58e8f","decimals":6,"logoURI":"https://swap.swftcoin.com/swft-v3/images/coins/USDT(MATIC).png","isCrossEnable":"1","withdrawGas":"0.1"},{"chain":"OKEXCHAIN","symbol":"USDT","name":"USDT","address":"0x382bb369d343125bfb2117af9c149795c6c65c50","decimals":18,"logoURI":"https://www.cherryswap.net/swapimages/images/coins/0x382bb369d343125bfb2117af9c149795c6c65c50.png","isCrossEnable":"1","withdrawGas":"0.1"}]
  }
}
```

{% endtab %}
{% endtabs %}

### Code example

{% tabs %}
{% tab title="JavaScript" %}

```
// getToken example
const res = await axios.post('https://api.bridgers.xyz/api/exchangeRecord/getToken')
console.log(res)
```

{% endtab %}
{% endtabs %}

### Postman example

![](/files/8PyYw9va80rI3dXfjzfF)
