Skip to content
Eden Engine

Crypto Exchange Listing & Delisting Event History (by Symbol & Exchange)

omnial/market-listing

Given a start date and optional symbol/exchange/product filters, returns the history of token listing, delisting, and related exchange events (cancelled, advanced, postponed) -- each record naming the exchange, trading pair, base/quote symbols, product type, and when the event took (and was published) effect.

activeper callv1
Provider
Web & Business Data Network
Category
token-prices
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": [
    "from"
  ],
  "properties": {
    "to": {
      "type": "string",
      "minLength": 1,
      "description": "End date (defaults to now). Example: 2024-03-01."
    },
    "from": {
      "type": "string",
      "minLength": 1,
      "description": "Start date (YYYY-MM-DD or ISO 8601). Example: 2024-01-01."
    },
    "type": {
      "enum": [
        "listing",
        "delisting",
        "cancelled",
        "advanced",
        "postponed"
      ],
      "type": "string",
      "default": "listing",
      "description": "Event type filter. Defaults to \"listing\"."
    },
    "limit": {
      "type": "integer",
      "default": 20,
      "maximum": 100,
      "minimum": 1,
      "description": "Results per page. Defaults to 20."
    },
    "offset": {
      "type": "integer",
      "default": 0,
      "maximum": 9007199254740991,
      "minimum": 0,
      "description": "Pagination offset. Defaults to 0."
    },
    "symbol": {
      "type": "string",
      "minLength": 1,
      "description": "Filter by token symbol. Example: BTC."
    },
    "product": {
      "enum": [
        "spot",
        "margin",
        "perp",
        "pre_market_perp",
        "all"
      ],
      "type": "string",
      "default": "all",
      "description": "Filter by product type. Defaults to \"all\"."
    },
    "exchange": {
      "type": "string",
      "minLength": 1,
      "description": "Filter by exchange name. Example: binance."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "data",
    "meta"
  ],
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "exchange_name",
          "product",
          "trading_pair",
          "base_symbol",
          "quote_symbol",
          "event_type",
          "effective_at",
          "published_at"
        ],
        "properties": {
          "product": {
            "type": "string",
            "description": "Product type for this event. Observed 'PERP' and 'SPOT' in this tool's fixtures; the endpoint also documents 'MARGIN' and 'PRE_MARKET_PERP' as possible values, unconfirmed here."
          },
          "event_type": {
            "type": "string",
            "description": "Observed only as 'LISTING' in this tool's fixtures; the endpoint also documents 'DELISTING', 'CANCELLED', 'ADVANCED', and 'POSTPONED' as possible values (matching the input `type` filter's enum), unconfirmed here."
          },
          "base_symbol": {
            "type": "string",
            "description": "e.g. 'BTC'."
          },
          "effective_at": {
            "type": "integer",
            "description": "Unix seconds when the event takes/took effect."
          },
          "published_at": {
            "type": "integer",
            "description": "Unix seconds when the event was published/announced. Observed equal to effective_at on some records and earlier on others."
          },
          "quote_symbol": {
            "type": "string",
            "description": "e.g. 'USD', 'USDC'."
          },
          "trading_pair": {
            "type": "string",
            "description": "e.g. 'BTC/USD'."
          },
          "exchange_name": {
            "type": "string",
            "description": "Uppercase exchange identifier, e.g. 'BINANCE'."
          }
        },
        "additionalProperties": false
      },
      "description": "One entry per matching listing/delisting/related event. Empty when no event matches the requested filters (observed for an obscure symbol with no delisting history), never omitted or replaced with an error."
    },
    "meta": {
      "type": "object",
      "required": [
        "total",
        "limit",
        "offset",
        "cached"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "description": "Echoes the requested page size."
        },
        "total": {
          "type": "integer",
          "description": "Total matching records for the query."
        },
        "cached": {
          "type": "boolean",
          "description": "Whether this response was served from the provider's cache."
        },
        "offset": {
          "type": "integer",
          "description": "Echoes the requested pagination offset."
        }
      },
      "additionalProperties": false
    }
  },
  "description": "The listing-event response, 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