Appearance
Coinbase
Buy, sell, and manage cryptocurrency with accounts and spot prices via the Coinbase API.
| Detail | Value |
|---|---|
| Category | Finance |
| Base URL | https://api.coinbase.com/v2 |
| Authentication | Bearer Token |
| Endpoints | 3 |
| Connector key | coinbase |
Using Coinbase in a workflow
- Go to Connections and click New Connection.
- Pick Coinbase from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /accounts | List cryptocurrency accounts |
POST /accounts/{id}/buys | Buy cryptocurrency |
GET /prices/{pair}/spot | Get spot price for a currency pair |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /accounts
List cryptocurrency accounts
| Detail | Value |
|---|---|
| Operation ID | fintech.listCryptoAccounts |
| Method | GET |
| Path | /accounts |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Coinbase connection from the Connection dropdown.
- In the Operation dropdown, select
fintech.listCryptoAccounts. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Coinbase API reference.
POST /accounts/{id}/buys
Buy cryptocurrency
| Detail | Value |
|---|---|
| Operation ID | fintech.createBuy |
| Method | POST |
| Path | /accounts/{id}/buys |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
id | path | string | Yes |
Request Body
| Field | Type |
|---|---|
amount | string |
currency | string |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Coinbase connection from the Connection dropdown.
- In the Operation dropdown, select
fintech.createBuy. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Coinbase API reference.
GET /prices/{pair}/spot
Get spot price for a currency pair
| Detail | Value |
|---|---|
| Operation ID | fintech.getSpotPrice |
| Method | GET |
| Path | /prices/{pair}/spot |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
pair | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Coinbase connection from the Connection dropdown.
- In the Operation dropdown, select
fintech.getSpotPrice. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Coinbase API reference.