Example payloads
- Quoted
- Processing
- Failed
- Completed
- Completed (with deposit data)
Transfer fee quote is ready:
Report incorrect code
Copy
Ask AI
{
"eventId": "<uuid>",
"eventType": "payments.transfers.quoted",
"timestamp": "2026-01-01T00:00:00Z",
"data": {
"createdAt": "2026-01-01T00:00:00Z",
"expiresAt": "2026-01-01T00:15:00Z",
"fees": [
{
"amount": "0.19",
"asset": "usdc",
"type": "network"
}
],
"source": {
"accountId": "account_<uuid>",
"asset": "usdc"
},
"sourceAmount": "100.19",
"sourceAsset": "usdc",
"status": "quoted",
"target": {
"address": "0x<address>",
"asset": "usdc",
"network": "ethereum"
},
"targetAmount": "100.00",
"targetAsset": "usdc",
"transferId": "transfer_<uuid>",
"updatedAt": "2026-01-01T00:00:10Z"
}
}
Transfer is being executed:
Report incorrect code
Copy
Ask AI
{
"eventId": "<uuid>",
"eventType": "payments.transfers.processing",
"timestamp": "2026-01-01T00:02:30Z",
"data": {
"createdAt": "2026-01-01T00:00:00Z",
"expiresAt": "2026-01-01T00:15:00Z",
"fees": [
{
"amount": "0.19",
"asset": "usdc",
"type": "network"
}
],
"source": {
"accountId": "account_<uuid>",
"asset": "usdc"
},
"sourceAmount": "100.19",
"sourceAsset": "usdc",
"status": "processing",
"target": {
"address": "0x<address>",
"asset": "usdc",
"network": "ethereum"
},
"targetAmount": "100.00",
"targetAsset": "usdc",
"transferId": "transfer_<uuid>",
"updatedAt": "2026-01-01T00:02:30Z"
}
}
Transfer failed:
Report incorrect code
Copy
Ask AI
{
"eventId": "<uuid>",
"eventType": "payments.transfers.failed",
"timestamp": "2026-01-01T00:05:00Z",
"data": {
"createdAt": "2026-01-01T00:00:00Z",
"expiresAt": "2026-01-01T00:15:00Z",
"failureReason": "Insufficient Balance",
"fees": [
{
"amount": "0.19",
"asset": "usdc",
"type": "network"
}
],
"source": {
"accountId": "account_<uuid>",
"asset": "usdc"
},
"sourceAmount": "100.19",
"sourceAsset": "usdc",
"status": "failed",
"target": {
"address": "0x<address>",
"asset": "usdc",
"network": "ethereum"
},
"targetAmount": "100.00",
"targetAsset": "usdc",
"transferId": "transfer_<uuid>",
"updatedAt": "2026-01-01T00:05:00Z"
}
}
Transfer finished successfully:
Report incorrect code
Copy
Ask AI
{
"eventId": "<uuid>",
"eventType": "payments.transfers.completed",
"timestamp": "2026-01-01T00:05:00Z",
"data": {
"createdAt": "2026-01-01T00:00:00Z",
"expiresAt": "2026-01-01T00:15:00Z",
"fees": [
{
"amount": "0.19",
"asset": "usdc",
"type": "network"
}
],
"source": {
"accountId": "account_<uuid>",
"asset": "usdc"
},
"sourceAmount": "100.19",
"sourceAsset": "usdc",
"status": "completed",
"target": {
"address": "0x<address>",
"asset": "usdc",
"network": "ethereum"
},
"targetAmount": "100.00",
"targetAsset": "usdc",
"transferId": "transfer_<uuid>",
"updatedAt": "2026-01-01T00:05:00Z"
}
}
Completed transfer with deposit destination details:
Report incorrect code
Copy
Ask AI
{
"eventId": "<uuid>",
"eventType": "payments.transfers.completed",
"timestamp": "2026-01-01T00:05:00Z",
"data": {
"createdAt": "2026-01-01T00:00:00Z",
"completedAt": "2026-01-01T00:05:00Z",
"source": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"network": "base",
"asset": "usdc"
},
"sourceAmount": "100.00",
"sourceAsset": "usdc",
"status": "completed",
"target": {
"accountId": "account_<uuid>",
"asset": "usdc"
},
"targetAmount": "100.00",
"targetAsset": "usdc",
"transferId": "transfer_<uuid>",
"details": {
"depositDestination": {
"id": "depositDestination_<uuid>"
},
"onchainTransactions": [
{
"transactionHash": "0x363cd3b3d4f49497cf5076150cd709307b90e9fc897fdd623546ea7b9313cecb",
"network": "base"
}
]
},
"updatedAt": "2026-01-01T00:05:00Z"
}
}
This page shows full incoming webhook request bodies (
eventId, eventType, timestamp, data).See Transfers example payloads for source and target payload object examples.