GET
/
markets
/
{market_address}
curl --request GET \
  --url https://api-testnet.gte.xyz/v1/markets/{market_address}
{
  "marketType": "launchpad",
  "address": "<string>",
  "baseAsset": {
    "address": "<string>",
    "decimals": 123,
    "name": "<string>",
    "symbol": "<string>",
    "creator": "<string>",
    "totalSupply": 123,
    "mediaUri": "<string>"
  },
  "quoteAsset": {
    "address": "<string>",
    "decimals": 123,
    "name": "<string>",
    "symbol": "<string>",
    "creator": "<string>",
    "totalSupply": 123,
    "mediaUri": "<string>"
  },
  "price": 123,
  "volume24hr": 123,
  "marketCap": 123
}

Path Parameters

market_address
string
required

EVM address

Response

200
application/json
Market details
marketType
enum<string>

Type of the market

Available options:
launchpad,
amm
address
string

EVM address of the market

baseAsset
object

Base asset of the market. On AMMs, this token comes first in the pair.

quoteAsset
object

Quote asset of the market. On AMMs, this token comes second in the pair.

price
number

Price of the quote asset in the base asset

volume24hr
number

Volume of the market in the last 24 hours

marketCap
number

Market cap of the market.