Skip to main content
POST
/
api
/
v1
/
onchain
/
send
Send on-chain payment
curl --request POST \
  --url https://api.example.com/api/v1/onchain/send \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount_sat": 1,
  "destination": "<string>"
}
'
{
  "txid": "<string>"
}

Body

application/json
amount_sat
integer<int64>
required

The amount to send (in satoshis)

Required range: x >= 0
destination
string
required

The destination Bitcoin address

Response

Returns the send result

txid
string
required