Skip to main content
GET
/
api
/
v1
/
tokens
/
search
Search or import tokens
curl --request GET \
  --url https://public-backend.bungee.exchange/api/v1/tokens/search
{
  "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

q
string
required

Search query for token address, name or symbol. Does partial matching too

Example:

"ETH"

userAddress
string

User wallet address

Example:

"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"

Response

200 - application/json

Returns the list of tokens with that query by chain.

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