Get Coin Tickers
Get trading pair tickers for a coin across all exchanges (Binance, Coinbase, Uniswap, etc.). Returns exchange name, last price, 24h volume, bid-ask spread, and trust score. Sorted by trust score by default. Paginated (100/page). Optionally includes 2% orderbook depth. Ideal for: finding best trading venues, price arbitrage detection, comparing exchange liquidity, execution planning.
Catalog action Blockchain Data
Get trading pair tickers for a coin across all exchanges (Binance, Coinbase, Uniswap, etc.). Returns exchange name, last price, 24h volume, bid-ask spread, and trust score. Sorted by trust score by default. Paginated (100/page). Optionally includes 2% orderbook depth. Ideal for: finding best trading venues, price arbitrage detection, comparing exchange liquidity, execution planning.
At a Glance
| Field | Value |
|---|---|
| Action ID | coingecko-get-coin-tickers |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coingecko, tickers, trading-pairs, exchanges, volume, cryptocurrency, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
coinId | string | Yes | CoinGecko coin ID (e.g., 'bitcoin', 'ethereum'). Use the search action to find coin IDs. |
exchangeIds | string | No | Filter by specific exchange ID (e.g., 'binance', 'uniswap_v3'). |
includeExchangeLogo | boolean | No | Include exchange logo URLs in response. |
page | number | No | Page number for pagination. |
order | string | No | Sort order for results. |
depth | boolean | No | Include 2% orderbook depth (cost to move price up/down 2%). |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Coin name |
tickers | array | Yes | Array of trading pairs/tickers for the coin across exchanges. |
Examples
json{ "type": "coingecko-get-coin-tickers", "payload": { "coinId": "example-coinId" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coingecko-get-coin-tickers/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "coinId": "example-coinId" }}'
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.
