Get Checkout
Retrieve details of a specific Coinbase Business checkout by ID. Returns full checkout information including status, settlement, refunds, and transaction details. Ideal for: payment status checks, order verification, webhook follow-up, receipt generation.
Catalog action Integrations coinbase-business
Retrieve details of a specific Coinbase Business checkout by ID. Returns full checkout information including status, settlement, refunds, and transaction details. Ideal for: payment status checks, order verification, webhook follow-up, receipt generation.
At a Glance
| Field | Value |
|---|---|
| Action ID | coinbase-business-get-checkout |
| Category | Integrations |
| Connector | coinbase-business |
| Requires gas | No |
| Funds movement | None declared |
| Tags | coinbase, checkout, payment, crypto, finance, read |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
checkoutId | string | Yes | Checkout ID (24-char hex string) |
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 | Checkout ID |
url | string | Yes | Hosted payment page URL |
status | string | Yes | Checkout status |
amount | string | Yes | Payment amount |
currency | string | Yes | Currency code |
network | string | Yes | Blockchain network |
address | string | Yes | Blockchain payment address |
tokenAddress | string | No | ERC-20 token contract address |
description | string | No | Payment description |
expiresAt | string | No | Expiration timestamp |
metadata | object | No | Attached metadata |
successRedirectUrl | string | No | Success redirect URL |
failRedirectUrl | string | No | Fail redirect URL |
settlement | object | No | Settlement breakdown |
fiatAmount | string | No | Original fiat amount |
fiatCurrency | string | No | Original fiat currency code |
transactionHash | string | No | Blockchain transaction hash |
refundedAmount | string | No | Total refunded amount |
refunds | array | No | Refund details |
createdAt | string | Yes | Creation timestamp |
updatedAt | string | Yes | Last update timestamp |
Examples
json{ "type": "coinbase-business-get-checkout", "payload": { "checkoutId": "example-checkoutId" }, "children": [], "connector": { "type": "coinbase-business", "id": "conn_coinbase_business" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/coinbase-business-get-checkout/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "checkoutId": "example-checkoutId" }}'
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.
