Get Account
Get details of a specific Coinbase Business account by ID or currency code. Returns account information including balance, currency details, and account type. Ideal for: balance checks, account verification, pre-transfer validation, currency lookup.
Catalog action Integrations coinbase-business
Get details of a specific Coinbase Business account by ID or currency code. Returns account information including balance, currency details, and account type. Ideal for: balance checks, account verification, pre-transfer validation, currency lookup.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinbase-business-get-account |
| Category | Integrations |
| Connector | coinbase-business |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinbase, accounts, crypto, finance, balance, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
accountId | string | Yes | Account UUID or currency code. Accepts either format: currency code like 'USDC', 'BTC', 'ETH' (resolved automatically) or the account UUID. Returns the account's UUID in result.id, which is needed by address actions (create-address, list-addresses, etc.). |
apiKeyName | string | No | CDP API Key Name (overrides connector) |
apiKeySecret | string | No | CDP API Key Secret (overrides connector) |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Account ID |
name | string | Yes | Account name |
type | string | Yes | Account type |
currency | object | Yes | Currency details |
balance | object | Yes | Account balance |
createdAt | string | Yes | Creation timestamp |
updatedAt | string | Yes | Last update timestamp |
Examples
json{ "type": "coinbase-business-get-account", "payload": { "accountId": "example-accountId" }, "children": [], "connector": { "type": "coinbase-business", "id": "conn_coinbase_business" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinbase-business-get-account/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "accountId": "example-accountId" }}'
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.
