Contract
{
"type": "object",
"anyOf": [
{
"required": [
"exchange"
]
},
{
"required": [
"base"
]
},
{
"required": [
"quote"
]
},
{
"required": [
"search"
]
}
],
"properties": {
"base": {
"type": "string",
"minLength": 1,
"description": "Filter by base currency. Example: ETH."
},
"type": {
"enum": [
"spot",
"swap",
"future",
"option",
"perpetual",
"perp"
],
"type": "string",
"description": "Market type filter. Use perpetual or perp for perpetual contracts (alias for swap). Example: spot."
},
"limit": {
"type": "integer",
"default": 100,
"maximum": 5000,
"minimum": 1,
"description": "Max results. Example: 100. Defaults to 100."
},
"quote": {
"type": "string",
"minLength": 1,
"description": "Filter by quote currency. Example: USDT."
},
"search": {
"type": "string",
"minLength": 1,
"description": "Fuzzy search in pair/base/quote. Example: ETH."
},
"exchange": {
"enum": [
"binance",
"okx",
"bybit",
"bitget",
"coinbase",
"kraken",
"gate",
"htx",
"kucoin",
"mexc",
"upbit",
"bitfinex",
"bitstamp",
"deribit",
"bitmex",
"bithumb",
"hyperliquid"
],
"type": "string",
"description": "Exchange identifier. When omitted, searches across all supported exchanges. Example: binance."
}
},
"additionalProperties": false
}{
"type": "object",
"required": [
"data",
"meta"
],
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"base": {
"type": "string",
"description": "The base currency, e.g. 'BTC', 'ETH'."
},
"pair": {
"type": "string",
"description": "The trading pair as the exchange denotes it, e.g. 'BTC/USDT', 'ETH/USDC'."
},
"type": {
"type": "string",
"description": "Market type. Observed 'spot' (binance BTC pairs) and 'swap' (hyperliquid ETH perpetual -- returned as 'swap' even though the request used 'perpetual')."
},
"quote": {
"type": "string",
"description": "The quote currency, e.g. 'USDT', 'USDC'."
},
"active": {
"type": "boolean",
"description": "Whether the exchange currently lists this pair as tradeable. Observed both true and false among binance's BTC pairs."
},
"exchange": {
"type": "string",
"description": "Echoes the requested exchange, e.g. 'binance', 'hyperliquid'."
},
"maker_fee": {
"type": "number",
"description": "Maker fee rate as a decimal fraction, e.g. 0.001 for 0.1%. Observed to vary by exchange (0.001 on binance spot, 0.00015 on hyperliquid perpetual)."
},
"taker_fee": {
"type": "number",
"description": "Taker fee rate as a decimal fraction, e.g. 0.001 for 0.1%. Observed to vary by exchange (0.001 on binance spot, 0.00045 on hyperliquid perpetual)."
}
},
"additionalProperties": false
},
"description": "One entry per trading pair matching the request filters."
},
"meta": {
"type": "object",
"properties": {
"cached": {
"type": "boolean",
"description": "Whether this response was served from the provider's cache. Observed false on both real fixtures."
}
},
"additionalProperties": false
}
},
"description": "The exchange markets 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.
| Charge | Rate |
|---|---|
Per call Flat, regardless of what comes back | $0.00819 |
- 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
