Get Pairs Markets
Get futures market data for trading pairs of a specific coin across all exchanges. Returns current/index price, 24h volume (long/short breakdown), open interest, liquidations, funding rate, and next funding time per exchange. Ideal for: exchange comparison, funding rate arbitrage, cross-exchange analysis, liquidity assessment.
Catalog action Blockchain Data
Get futures market data for trading pairs of a specific coin across all exchanges. Returns current/index price, 24h volume (long/short breakdown), open interest, liquidations, funding rate, and next funding time per exchange. Ideal for: exchange comparison, funding rate arbitrage, cross-exchange analysis, liquidity assessment.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinglass-get-pairs-markets |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinglass, futures, trading-pairs, exchanges, volume, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Coin symbol to get trading pairs for (e.g., 'BTC', 'ETH'). Use the supported-coins API to get valid symbols. |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
pairs | array | Yes | Array of trading pair market data |
symbol | string | No | Queried coin symbol |
Examples
json{ "type": "coinglass-get-pairs-markets", "payload": { "symbol": "ETH" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinglass-get-pairs-markets/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "symbol": "ETH" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
