Skip to main content
POST
/
api
/
v1
/
exits
/
claim
/
vtxos
Claim specific exited VTXOs
curl --request POST \
  --url https://api.example.com/api/v1/exits/claim/vtxos \
  --header 'Content-Type: application/json' \
  --data '
{
  "destination": "<string>",
  "vtxos": [
    "<string>"
  ],
  "fee_rate": 1
}
'
{
  "message": "<string>"
}

Body

application/json
destination
string
required

The destination Bitcoin address

vtxos
string[]
required

The ID of an exited VTXO to be claimed

fee_rate
integer<int64> | null

Sets the desired fee-rate in sats/kvB to use broadcasting exit transactions

Required range: x >= 0

Response

Exit claimed successfully

message
string
required