GET
/
tokens
/
search
Search tokens based on name or symbol
curl --request GET \
  --url https://api-testnet.gte.xyz/v1/tokens/search
[
  {
    "address": "<string>",
    "decimals": 123,
    "name": "<string>",
    "symbol": "<string>",
    "totalSupply": 123,
    "logoUri": "<string>",
    "priceUsd": 123,
    "volume1HrUsd": 123,
    "volume24HrUsd": 123,
    "marketCapUsd": 123,
    "marketType": "bonding-curve"
  }
]

Query Parameters

q
string
marketType
enum<string>

Type of the market

Available options:
bonding-curve,
amm,
clob-spot,
perps

Response

List of tokens

List of tokens.

address
string
required

EVM address

decimals
integer
required

Number of decimals for the token

name
string
required

Name of the token

symbol
string
required

Symbol of the token

totalSupply
number
required

Total supply of the token

logoUri
string | null
required

URI of the token's logo

priceUsd
number
required

Price of token in USD

volume1HrUsd
number
required

1 hour volume in USD

volume24HrUsd
number
required

24 hour volume in USD

marketCapUsd
number
required

Token market cap in USD

marketType
enum<string>

Highest market type that the token is listed in

Available options:
bonding-curve,
amm,
clob-spot,
perps