Skip to main content
GET
/
gateway
/
v1
/
exchange
/
markets
Exchange Trading Pairs
curl --request GET \
  --url https://api.ask.surf/gateway/v1/exchange/markets
{
  "data": [
    {
      "active": true,
      "base": "<string>",
      "exchange": "<string>",
      "maker_fee": 123,
      "pair": "<string>",
      "quote": "<string>",
      "taker_fee": 123,
      "type": "<string>"
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123
  },
  "$schema": "<string>"
}

Query Parameters

exchange
enum<string>

Exchange identifier. When omitted, searches across all supported exchanges.

Available options:
binance,
okx,
bybit,
bitget,
coinbase,
kraken,
gate,
htx,
kucoin,
mexc,
upbit,
bitfinex,
bitstamp,
deribit,
bitmex,
bithumb
Example:

"binance"

type
enum<string>

Filter: spot, swap, future, option

Available options:
spot,
swap,
future,
option
Example:

"spot"

base
string

Filter by base currency

Example:

"ETH"

quote
string

Filter by quote currency

Example:

"USDT"

Fuzzy search in pair/base/quote

Example:

"ETH"

limit
integer<int64>
default:100

Max results

Required range: 1 <= x <= 5000
Example:

100

Response

OK

data
object[] | null
required
meta
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/SimpleListResponseExchangeMarketItem.json"