Get Token Info
Retrieves on-chain token metadata including social links, GT trust score, holder distribution, and security flags. Returns detailed security analysis with mint/freeze authority status and honeypot detection. Ideal for: token due diligence, security screening, verifying token legitimacy before trading.
Catalog action Blockchain Data
Retrieves on-chain token metadata including social links, GT trust score, holder distribution, and security flags. Returns detailed security analysis with mint/freeze authority status and honeypot detection. Ideal for: token due diligence, security screening, verifying token legitimacy before trading.
At a Glance
| Field | Value |
|---|---|
| Action ID | coingecko-get-token-info |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coingecko, onchain, token, info, metadata, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
network | string | Yes | Network ID (e.g., 'eth', 'bsc', 'polygon_pos'). |
address | string | Yes | Token contract address. |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
token | object | Yes | - |
Examples
json{ "type": "coingecko-get-token-info", "payload": { "network": "example-network", "address": "0x0000000000000000000000000000000000000000" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coingecko-get-token-info/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "network": "example-network", "address": "0x0000000000000000000000000000000000000000" }}'
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.
