curl --request POST \
--url https://api.example.com/api/v1/exits/claim/all \
--header 'Content-Type: application/json' \
--data '
{
"destination": "<string>",
"fee_rate": 1
}
'{
"message": "<string>"
}Sweeps all claimable exit outputs into a single on-chain transaction sent to the specified address. Unlike progress, the daemon does not claim automatically—this endpoint must be called manually. Poll the status endpoint or call progress and check for done: true to know when VTXOs are ready to claim. This is the final step of the emergency exit process—the bitcoin is not considered back on-chain until this transaction confirms.
curl --request POST \
--url https://api.example.com/api/v1/exits/claim/all \
--header 'Content-Type: application/json' \
--data '
{
"destination": "<string>",
"fee_rate": 1
}
'{
"message": "<string>"
}Was this page helpful?