Get Tokens List

Get tokens list for a network

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

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

Path Parameters

Name
Type
Description

network

number

Network ID. (Mainnet - 1, Optimism - 10, BSC - 56, Polygon - 137, Fantom - 250, zkEVM - 1101, Base - 8453, Arbitrum - 42161, Avalanche - 43114, Gnosis - 100). Default: 1.

{
  "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
    }
  ]
}

Last updated