Get On-Chain Exchange Assets
Get on-chain asset holdings for a specific exchange's wallets. Returns wallet addresses, balances, and USD values for all assets held by the exchange. Ideal for: exchange reserve tracking, transparency analysis, whale watching, market sentiment.
Catalog action Blockchain Data
Get on-chain asset holdings for a specific exchange's wallets. Returns wallet addresses, balances, and USD values for all assets held by the exchange. Ideal for: exchange reserve tracking, transparency analysis, whale watching, market sentiment.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinglass-onchain-get-exchange-assets |
| Category | Blockchain Data |
| Connector | Not required |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinglass, onchain, exchange, assets, reserves, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchange | string | Yes | Exchange name to query (e.g., 'Binance', 'Coinbase', 'Bitfinex'). Returns all wallet holdings for that exchange. |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
exchange | string | Yes | Exchange name. |
assets | array | Yes | Array of asset holdings for the exchange |
Examples
json{ "type": "coinglass-onchain-get-exchange-assets", "payload": { "exchange": "example-exchange" }, "children": []}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinglass-onchain-get-exchange-assets/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "exchange": "example-exchange" }}'
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.
