Get Tokens List

Get tokens list for a network

GET https://apiv5.paraswap.io/tokens/:network

This endpoint allows you to obtain a list of tokens curated by ParaSwap.

Path Parameters

NameTypeDescription

network

number

The ID of the network. (Mainnet - 1, Ropsten - 3, Polygon - 137, BSC - 56, Avalanche - 43114). Default - 1 (Mainnet).

{
  "tokens": [
    {
      "symbol": "ETH",
      "address": "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE",
      "decimals": 18,
      "img": "https://img.paraswap.network/ETH.png",
      "network": 1
    },
    {
      "symbol": "USDT",
      "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
      "decimals": 6,
      "img": "https://img.paraswap.network/USDT.png",
      "network": 1
    }
  ]
}

ParaSwap's API is not limited to the tokens that are listed on the tokens endpoint. Tokens endpoint is merely a list of tokens curated by ParaSwap. This list is not actively maintained and will soon be deprecated. To use a more up-to-date list of tokens it is suggested to use token-lists.

Last updated