The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "Coinbase CDP - Faucet & Transfer",
"nodes": [
{
"parameters": {},
"id": "trigger",
"name": "Manual Trigger",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
240,
300
]
},
{
"parameters": {
"resource": "account",
"operation": "getOrCreate",
"accountName": "sender-wallet"
},
"id": "create-sender",
"name": "Create Sender",
"type": "CUSTOM.coinbaseCdp",
"typeVersion": 1,
"position": [
480,
300
],
"credentials": {
"coinbaseCdpApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"resource": "account",
"operation": "requestFaucet",
"address": "={{ $json.address }}",
"faucetNetwork": "base-sepolia",
"faucetToken": "eth"
},
"id": "request-faucet",
"name": "Request Faucet ETH",
"type": "CUSTOM.coinbaseCdp",
"typeVersion": 1,
"position": [
720,
300
],
"credentials": {
"coinbaseCdpApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"resource": "balance",
"operation": "listTokens",
"address": "={{ $('Create Sender').item.json.address }}",
"network": "base-sepolia"
},
"id": "check-balance",
"name": "Check Balance After Faucet",
"type": "CUSTOM.coinbaseCdp",
"typeVersion": 1,
"position": [
960,
300
],
"credentials": {
"coinbaseCdpApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Manual Trigger": {
"main": [
[
{
"node": "Create Sender",
"type": "main",
"index": 0
}
]
]
},
"Create Sender": {
"main": [
[
{
"node": "Request Faucet ETH",
"type": "main",
"index": 0
}
]
]
},
"Request Faucet ETH": {
"main": [
[
{
"node": "Check Balance After Faucet",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
coinbaseCdpApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Coinbase CDP - Faucet & Transfer. Uses CUSTOM. Event-driven trigger; 4 nodes.
Source: https://github.com/pvdyck/n8n-nodes-coinbase-cdp/blob/5bbdac0c043cc42b52e367cddff36c2143a58da4/examples/faucet-and-transfer.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
[E2E] Listing - Create, Approve, Close. Uses CUSTOM. Event-driven trigger; 9 nodes.
[E2E] Availability Exceptions - Create and Delete. Uses CUSTOM. Event-driven trigger; 7 nodes.
[E2E] Availability Exceptions - Get Many. Uses CUSTOM. Event-driven trigger; 5 nodes.