curl --request POST \
--url https://api.example.com/api/v1/onchain/send-many \
--header 'Content-Type: application/json' \
--data '
{
"destinations": [
"<string>"
],
"immediate": true
}
'{
"txid": "<string>"
}Batches multiple payments into a single on-chain transaction. Each destination is formatted as address:amount. Broadcasts the transaction immediately at a fee rate targeting confirmation within three blocks and returns the transaction ID.
curl --request POST \
--url https://api.example.com/api/v1/onchain/send-many \
--header 'Content-Type: application/json' \
--data '
{
"destinations": [
"<string>"
],
"immediate": true
}
'{
"txid": "<string>"
}Was this page helpful?