Get Exchange Info
Retrieves detailed information about a specific cryptocurrency exchange by ID. Returns name, year established, country, trust score, 24h volume, trading pairs count, and up to 100 tickers. Ideal for: exchange research, due diligence, comparing exchange metrics, building exchange profile pages.
Catalog action Blockchain Data
Retrieves detailed information about a specific cryptocurrency exchange by ID. Returns name, year established, country, trust score, 24h volume, trading pairs count, and up to 100 tickers. Ideal for: exchange research, due diligence, comparing exchange metrics, building exchange profile pages.
At a Glance
| Field | Value |
|---|---|
| Action ID | coingecko-get-exchange-info |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coingecko, exchange, info, details, tickers, volume, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchangeId | string | Yes | Exchange ID (e.g., 'binance', 'coinbase-exchange', 'kraken'). Use /exchanges/list to find IDs. |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchange | object | Yes | Detailed exchange information |
Examples
json{ "type": "coingecko-get-exchange-info", "payload": { "exchangeId": "example-exchangeId" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coingecko-get-exchange-info/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.
