Get Exchange Tickers logo

Catalog action Blockchain Data

Retrieves all trading pair tickers for a specific exchange, sorted by trust score by default. Returns prices, volumes, spreads, and trust scores with pagination (100 per page); filterable by coin IDs. Ideal for: exchange pair discovery, monitoring specific trading pairs, comparing prices across an exchange.

At a Glance

FieldValue
Action IDcoingecko-get-exchange-tickers
CategoryBlockchain Data
ConnectorNot required
Requires gasNo
Funds movementNone declared
Tagscoingecko, exchange, tickers, trading-pairs, volume, price, read

Payload Schema

FieldTypeRequiredDescription
exchangeIdstringYesExchange ID (e.g., 'binance', 'coinbase-exchange', 'kraken'). Use the exchanges list action or token_lookup(query_type='exchanges') to find valid IDs.
coinIdsstringNoFilter tickers by coin IDs (comma-separated, e.g., 'bitcoin,ethereum'). Only shows pairs involving these coins.
includeExchangeLogobooleanNoInclude exchange logo URL in the market object. Default: false
pagenumberNoPage number for pagination. Each page returns up to 100 tickers. Default: 1
depthbooleanNoInclude 2% orderbook depth data showing cost_to_move_up_usd and cost_to_move_down_usd (cost to move price up/down by 2%). Default: false
orderstringNoSort order for ticker results.

Result Schema

FieldTypeRequiredDescription
namestringYesExchange name (e.g., 'Binance', 'Coinbase Exchange')
tickersarrayYesArray of trading pair tickers for the exchange

Examples

json
{ "type": "coingecko-get-exchange-tickers", "payload": { "exchangeId": "example-exchangeId" }, "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.

Ask a question... ⌘I