Skip to main content
GET
/
gateway
/
v1
/
market
/
liquidation
/
exchange-list
Liquidation by Exchange
curl --request GET \
  --url https://api.ask.surf/gateway/v1/market/liquidation/exchange-list
{
  "data": [
    {
      "exchange": "<string>",
      "liquidation_usd": 123,
      "long_liquidation_usd": 123,
      "short_liquidation_usd": 123
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123
  },
  "$schema": "<string>"
}

Query Parameters

symbol
string
default:BTC

Token ticker symbol like BTC or ETH

Example:

"BTC"

time_range
enum<string>
default:24h

Aggregation time range. Can be 1h, 4h, 12h, or 24h.

Available options:
1h,
4h,
12h,
24h
Example:

"24h"

sort_by
enum<string>
default:liquidation_usd

Field to sort results by

Available options:
liquidation_usd,
long_liquidation_usd,
short_liquidation_usd
Example:

"liquidation_usd"

order
enum<string>
default:desc

Sort order

Available options:
asc,
desc
Example:

"desc"

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/SimpleListResponseLiquidationExchangeItem.json"