Get Coin Info
Get comprehensive information about a cryptocurrency by CoinGecko ID (e.g., 'bitcoin', 'ethereum'). Returns name, symbol, description, categories, links (website, Twitter, GitHub, explorer), genesis date, and optionally market data (prices, ATH/ATL, supply), community stats (Twitter followers, Reddit subscribers), developer metrics (GitHub commits, stars), and 7-day price sparkline. Ideal for: coin detail pages, investment research, due diligence, project analysis, creating dashboards.
Catalog action Blockchain Data
Get comprehensive information about a cryptocurrency by CoinGecko ID (e.g., 'bitcoin', 'ethereum'). Returns name, symbol, description, categories, links (website, Twitter, GitHub, explorer), genesis date, and optionally market data (prices, ATH/ATL, supply), community stats (Twitter followers, Reddit subscribers), developer metrics (GitHub commits, stars), and 7-day price sparkline. Ideal for: coin detail pages, investment research, due diligence, project analysis, creating dashboards.
At a Glance
| Field | Value |
|---|---|
| Action ID | coingecko-get-coin-info |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coingecko, coin, info, details, metadata, research, comprehensive, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
coinId | string | Yes | CoinGecko coin ID (e.g., 'bitcoin', 'ethereum', 'solana'). Use the search action to find coin IDs. |
localization | boolean | No | Include localized descriptions in multiple languages. Default: false |
tickers | boolean | No | Include exchange tickers data. Default: false |
marketData | boolean | No | Include comprehensive market data (prices, volumes, etc.). Default: true |
communityData | boolean | No | Include community stats (Twitter followers, Reddit subscribers, etc.). Default: false |
developerData | boolean | No | Include developer/GitHub stats (commits, forks, stars, etc.). Default: false |
sparkline | boolean | No | Include 7-day sparkline price data. Default: false |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
coin | object | Yes | - |
Examples
json{ "type": "coingecko-get-coin-info", "payload": { "coinId": "example-coinId" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coingecko-get-coin-info/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.
