Skip to main content
POST
/
api
/
v1
/
onchain
/
send-many
Send to multiple addresses
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>"
}

Body

application/json
destinations
string[]
required

List of destinations in format "address:amount"

immediate
boolean | null

Sends the transaction immediately instead of waiting

Response

Returns the send result

txid
string
required