Get Coins Markets logo

Catalog action Blockchain Data

Get futures market performance metrics for cryptocurrencies including price, open interest, funding rates, and liquidations. Returns current price, OI, market cap ratio, price/OI/volume changes across timeframes (5m to 24h), long/short ratios, and liquidation data. Pass 'symbols' (e.g. 'SOL' or 'BTC,ETH') to get specific coins — without it, results are ranked by market cap, so coins[0] is BTC. Ideal for: market overview dashboards, futures market analysis, identifying high activity coins, momentum screening.

At a Glance

FieldValue
Action IDcoinglass-get-coins-markets
CategoryBlockchain Data
ConnectorNot required
Requires gasNo
Funds movementNone declared
Tagscoinglass, futures, market, open-interest, liquidation, read

Payload Schema

FieldTypeRequiredDescription
symbolsstringNoComma-separated coin symbols to return (e.g., 'SOL' or 'BTC,ETH,SOL'). Case-insensitive; coins are returned in the order requested. When provided, the action searches the top 500 coins by market cap and returns only these symbols — page/perPage are ignored. Always set this when the workflow is about specific coins; without it, results are ranked by market cap and coins[0] is BTC.
exchangeListstringNoComma-separated exchange names to filter data (e.g., 'binance,okx,bybit'). If not provided, returns aggregated data from all exchanges.
perPagenumberNoNumber of results per page (default: 10).
pagenumberNoPage number for pagination (default: 1).

Result Schema

FieldTypeRequiredDescription
coinsarrayYesArray of coin market data
pagenumberNoCurrent page number
perPagenumberNoResults per page
symbolsNotFoundarrayNoWhen 'symbols' was requested and only some matched: the requested symbols that were not found in the top 500 by market cap. Absent when every requested symbol matched (or no symbols filter was used).

Examples

json
{ "type": "coinglass-get-coins-markets", "payload": { "symbols": "ETH", "exchangeList": "example-exchangeList", "perPage": 10, "page": 1 }, "children": []}

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.