GET
/
markets
curl --request GET \
  --url https://api-testnet.gte.xyz/v1/markets
{
  "markets": [
    {
      "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
    }
  ],
  "total": 123
}

Query Parameters

limit
integer
default:100
Required range: 1 <= x <= 1000
offset
integer
default:0
Required range: x >= 0
marketType
enum<string>

Filter by market type. If null, all markets will be returned.

Available options:
launchpad,
amm
asset
string

Address of the base asset to filter by

minPrice
string

Returns markets with a price greater the given value. Price is in the quote asset formatted with quote decimals.

maxPrice
string

Returns markets with a price less than the given value. Price is in the quote asset formatted with quote decimals.

Response

200
application/json
List of markets
markets
object[]
total
integer