Skip to main content
GET
/
api
/
v1
/
tokens
/
list
Get token list
curl --request GET \
  --url https://public-backend.bungee.exchange/api/v1/tokens/list
{
  "success": true,
  "statusCode": 200,
  "message": "<string>",
  "result": {
    "tokens": {
      "56": [
        {
          "chainId": 56,
          "address": "0x007ea5c0ea75a8df45d288a4debdd5bb633f9e56",
          "name": "CanYaCoin",
          "symbol": "CAN",
          "decimals": 18,
          "logoURI": null,
          "tags": [],
          "isShortListed": true,
          "balance": "0",
          "balanceInUsd": 0,
          "isVerified": false
        }
      ],
      "137": [
        {
          "chainId": 137,
          "address": "0x0266f4f08d82372cf0fcbccc0ff74309089c74d1",
          "name": "Rocket Pool ETH",
          "symbol": "RETH",
          "decimals": 18,
          "logoURI": "https://assets.coingecko.com/coins/images/20764/large/reth.png?1696520159",
          "tags": [],
          "isShortListed": true,
          "balance": "0",
          "balanceInUsd": 0,
          "isVerified": true
        }
      ]
    }
  }
}

Query Parameters

userAddress
string

User wallet address

chainIds
string

Comma separate chainIds

list
string
default:trending

Set the list type you want: full or trending

Response

200 - application/json

Returns the list of tokens by chain. This is not a complete list of supported tokens.

success
boolean
default:true
required

flag indicating whether the req was successful

statusCode
number
default:200
required

Http status code

message
string | null

error message if request failed

result
object