Skip to main content
POST
/
api
/
v1
/
exits
/
progress
Progress exits
curl --request POST \
  --url https://api.example.com/api/v1/exits/progress \
  --header 'Content-Type: application/json' \
  --data '
{
  "fee_rate": 1,
  "wait": true
}
'
{
  "done": true,
  "exits": [
    {
      "state": {
        "tip_height": 1,
        "type": "start"
      },
      "vtxo_id": "<string>",
      "error": {
        "error": "<string>",
        "txid": "<string>",
        "type": "ancestor-retrieval-failure"
      }
    }
  ],
  "claimable_height": 1
}

Body

application/json
fee_rate
integer<int64> | null

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

Required range: x >= 0
wait
boolean | null

Wait until the exit is completed

Response

Returns the exit progress

done
boolean
required

Whether all transactions have been confirmed

exits
object[]
required

Status of each pending exit transaction

claimable_height
integer<int32> | null

Block height at which all exit outputs will be spendable

Required range: x >= 0