Skip to main content
POST
/
api
/
v1
/
breezee
/
send-payment
Send Payment
curl --request POST \
  --url https://usebreezee.xyz/api/v1/breezee/send-payment \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "address": "<string>",
  "amount_sats": 123
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Responses

200: Success

{
  "status": true,
  "payment": {
    "id": "019b6739-bdf4-7bc0-a252-4c2c32c61876",
    "payment_type": 0,
    "status": 0,
    "amount": 12,
    "fees": 2,
    "timestamp": 1766963396,
    "method": 0,
    "details": {
      "description": "",
      "preimage": "1ced667fe1e26d2d48a81316edf34e5dde5eb997ece8456aaa3d65ef33a755a2",
      "invoice": "lnbc1p54rwrapp5ychec6c8k3mzd9lr848lgx93yjgnzgzvazhxr44j6fal4kanqrdsdqqcqzzsxqyz5vqsp5q2x542qm7rr6stx3qyt73jmdpv8nxp2mxkk7nun3cenv6k8ksyjs9qxpqysgq5c4gxzjtnglj7dq86s0kuwcsc0tx3fwmrkfd6ar42humwj8k57exah89ew3s4zr3wsae4n5k4kn7g7aar2sduzhrkk8fjtsnyugz37gq77fzxl",
      "payment_hash": "262f9c6b07b4762697e33d4ff418b1249131204ce8ae61d6b2d27bfadbb300db",
      "destination_pubkey": "0324ba2392e25bff76abd0b1f7e4b53b5f82aa53fddc3419b051b6c801db9e2247",
      "lnurl_pay_info": null,
      "lnurl_withdraw_info": null,
      "lnurl_receive_metadata": null
    }
  }
}

422: Validation Error

{
  "detail": "For invoice with amount, amount_sats should be equal to the invoice amount"
}

Authorizations

X-API-Key
string
header
required

Body

application/json
address
string
required
amount_sats
integer | null

Response

Successful Response