Skip to main content
GET
/
tokens
Get list of tokens supported on GTE
curl --request GET \
  --url https://api-testnet.gte.xyz/v1/tokens
[
  {
    "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

creator
string

Returns assets created by the given user address EVM address

marketType
enum<string>

Filters assets by the given market type Type of the market

Available options:
bonding-curve,
amm,
clob-spot,
perps
limit
integer<uint>
default:100
Required range: 1 <= x <= 1000
offset
integer<uint>
default:0
Required range: x >= 0

Response

List of assets

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<double>
required

Total supply of the token

logoUri
string | null
required

URI of the token's logo

priceUsd
number<double>
required

Price of token in USD

volume1HrUsd
number<double>
required

1 hour volume in USD

volume24HrUsd
number<double>
required

24 hour volume in USD

marketCapUsd
number<double>
required

Token market cap in USD

marketType
enum<string> | null

Highest market type that the token is listed in

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