This endpoint allows you to initiate a withdrawal from a specific address without broadcasting
| Key | Required | Type | Description |
|---|---|---|---|
| assetId | true* | string (UUID) | The ID of the asset to withdraw. Required if assets array is not provided. |
| address | true* | string | The destination wallet address for the withdrawal. Required if assets array is not provided. |
| amount | true* | string | The withdrawal amount. Must be greater than 0. Required if assets array is not provided. |
| reference | false | string | An optional reference note for the withdrawal. |
| note | false | string | A short message or internal remark to associate with this withdrawal. Not visible on-chain. |
| metadata | false | object | Optional metadata (key-value pairs) for additional transaction details. |
| assets | false | array of Asset | Used for batch withdrawals. Required if assetId, amount, and address are not provided. |
| Key | Required | Type | Description |
|---|---|---|---|
| id | true | string (UUID) | The ID of the asset to withdraw. |
| amount | true | string | The withdrawal amount. Must be greater than 0. |
| address | true | string | The destination wallet address for the withdrawal. |
| reference | false | string | Optional reference note for this asset withdrawal. |
| note | false | string | A short message or internal remark for this asset withdrawal. Not visible on-chain. |
| metadata | false | object | Optional metadata (key-value pairs) for this asset withdrawal. |
assetId, amount, and address at the top level.assetId, amount, and address, and instead provide an array of assets (each following Asset)."YOUR_WALLET_ID"
"ADDRESS_ID"
[
{
"address": "0x451dEFC27B45808078e875556AF06bCFdC697BA4",
"amount": "0.5",
"id": "ae455f23-3824-4125-baab-d158315cbcbd",
"metadata": { "id": "0001" },
"note": "Payment for service 0",
"reference": "new multi0"
},
{
"address": "0x451dEFC27B45808078e875556AF06bCFdC697BA4",
"amount": "0.5",
"id": "ae455f23-3824-4125-baab-d158315cbcbd",
"metadata": { "id": "0002" },
"note": "Payment for service 1",
"reference": "new multi1"
}
]