Skip to content
Eden Engine

Crypto Liquidation Totals by Exchange

omnial/market-liquidation-exchange-list

Given a token symbol and a time window, returns a ranked snapshot of total, long, and short liquidation volume broken down by exchange, plus an aggregate 'All' row, sortable by any of the three totals in either order.

activeper callv1
Provider
Web & Business Data Network
Category
derivatives
Provider price
$0.01638 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "symbol"
  ],
  "properties": {
    "order": {
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string",
      "default": "desc",
      "description": "Sort order. Example: desc. Defaults to \"desc\"."
    },
    "symbol": {
      "type": "string",
      "minLength": 1,
      "description": "Token ticker symbol like BTC or ETH. Example: BTC."
    },
    "sort_by": {
      "enum": [
        "liquidation_usd",
        "long_liquidation_usd",
        "short_liquidation_usd"
      ],
      "type": "string",
      "default": "liquidation_usd",
      "description": "Field to sort results by. Example: liquidation_usd. Defaults to \"liquidation_usd\"."
    },
    "time_range": {
      "enum": [
        "1h",
        "4h",
        "12h",
        "24h"
      ],
      "type": "string",
      "default": "24h",
      "description": "Window to aggregate over for the snapshot: 1h, 4h, 12h, or 24h. Returns a single snapshot (not a time-series). This endpoint uses time_range only -- it does NOT accept interval. Example: 24h. Defaults to \"24h\"."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "exchange": {
            "type": "string",
            "description": "Exchange name, e.g. 'Binance', 'Bybit', or the literal 'All' for the aggregate row summing every exchange."
          },
          "liquidation_usd": {
            "type": "number",
            "description": "Total liquidation volume in USD for this exchange over the window."
          },
          "long_liquidation_usd": {
            "type": "number",
            "description": "Liquidation volume from long positions, in USD."
          },
          "short_liquidation_usd": {
            "type": "number",
            "description": "Liquidation volume from short positions, in USD."
          }
        },
        "additionalProperties": false
      },
      "description": "One row per exchange plus a single aggregate row named 'All'. Observed as 13 rows on both fixtures (12 named exchanges plus 'All'); a value of 0 for all three totals is common on a quiet exchange/window (observed on several rows of the ETH 1h fixture)."
    },
    "meta": {
      "type": "object",
      "properties": {
        "cached": {
          "type": "boolean",
          "description": "Whether this response was served from the provider's cache."
        }
      },
      "additionalProperties": false
    }
  },
  "description": "The liquidation snapshot, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": false
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01638
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026