Markets
Search markets based on name or symbol
GET
/
markets
/
search
curl --request GET \
--url https://api-testnet.gte.xyz/v1/markets/search
[
{
"marketType": "bonding-curve",
"address": "<string>",
"baseToken": {
"address": "<string>",
"decimals": 123,
"name": "<string>",
"symbol": "<string>",
"totalSupply": 123,
"logoUri": "<string>",
"priceUsd": 123,
"volume1HrUsd": 123,
"volume24HrUsd": 123,
"marketCapUsd": 123,
"marketType": "bonding-curve"
},
"quoteToken": {
"address": "<string>",
"decimals": 123,
"name": "<string>",
"symbol": "<string>",
"totalSupply": 123,
"logoUri": "<string>",
"priceUsd": 123,
"volume1HrUsd": 123,
"volume24HrUsd": 123,
"marketCapUsd": 123,
"marketType": "bonding-curve"
},
"price": 123,
"priceUsd": 123,
"volume24HrUsd": 123,
"priceUsdChange24Hr": 123,
"priceUsdChange1Hr": 123,
"volume1HrUsd": 123,
"marketCapUsd": 123,
"createdAt": 123,
"tvlUsd": 123,
"liquidityUsd": 123
}
]
Query Parameters
Filter by market type
Available options:
bonding-curve
, amm
, clob-spot
, perps
Response
200
application/json
List of markets
The response is of type object[]
.
curl --request GET \
--url https://api-testnet.gte.xyz/v1/markets/search
[
{
"marketType": "bonding-curve",
"address": "<string>",
"baseToken": {
"address": "<string>",
"decimals": 123,
"name": "<string>",
"symbol": "<string>",
"totalSupply": 123,
"logoUri": "<string>",
"priceUsd": 123,
"volume1HrUsd": 123,
"volume24HrUsd": 123,
"marketCapUsd": 123,
"marketType": "bonding-curve"
},
"quoteToken": {
"address": "<string>",
"decimals": 123,
"name": "<string>",
"symbol": "<string>",
"totalSupply": 123,
"logoUri": "<string>",
"priceUsd": 123,
"volume1HrUsd": 123,
"volume24HrUsd": 123,
"marketCapUsd": 123,
"marketType": "bonding-curve"
},
"price": 123,
"priceUsd": 123,
"volume24HrUsd": 123,
"priceUsdChange24Hr": 123,
"priceUsdChange1Hr": 123,
"volume1HrUsd": 123,
"marketCapUsd": 123,
"createdAt": 123,
"tvlUsd": 123,
"liquidityUsd": 123
}
]
Assistant
Responses are generated using AI and may contain mistakes.