Get Exchange Tickers
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.
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
| Field | Value |
|---|---|
| Action ID | coingecko-get-exchange-tickers |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coingecko, exchange, tickers, trading-pairs, volume, price, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchangeId | string | Yes | Exchange ID (e.g., 'binance', 'coinbase-exchange', 'kraken'). Use the exchanges list action or token_lookup(query_type='exchanges') to find valid IDs. |
coinIds | string | No | Filter tickers by coin IDs (comma-separated, e.g., 'bitcoin,ethereum'). Only shows pairs involving these coins. |
includeExchangeLogo | boolean | No | Include exchange logo URL in the market object. Default: false |
page | number | No | Page number for pagination. Each page returns up to 100 tickers. Default: 1 |
depth | boolean | No | Include 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 |
order | string | No | Sort order for ticker results. |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Exchange name (e.g., 'Binance', 'Coinbase Exchange') |
tickers | array | Yes | Array of trading pair tickers for the exchange |
Examples
json{ "type": "coingecko-get-exchange-tickers", "payload": { "exchangeId": "example-exchangeId" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coingecko-get-exchange-tickers/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "exchangeId": "example-exchangeId" }}'
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.
