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

Body

application/json
destination
string
required

The destination can be an Ark address, a BOLT11-invoice, LNURL or a lightning address

amount_sat
integer<int64> | null

The amount to send (in satoshis). Optional for bolt11 invoices

Required range: x >= 0
comment
string | null

An optional comment, only supported when paying to lightning addresses

Response

Payment sent successfully

message
string
required

Success message