Catchup

Starts a catchpoint catchup.

post

Given a catchpoint, it starts catching up to this catchpoint

Authorizations
Path parameters
catchpointstring ยท catchpointRequired

A catch point

Pattern: [0-9]{1,10}#[A-Z0-9]{1,53}
Query parameters
minintegerOptional

Specify the minimum number of blocks which the ledger must be advanced by in order to start the catchup. This is useful for simplifying tools which support fast catchup, they can run the catchup unconditionally and the node will skip the catchup if it is not needed.

Responses
200Success
application/json
post
POST /v2/catchup/{catchpoint} HTTP/1.1
Host: algo.nownodes.io
X-Algo-API-Token: YOUR_API_KEY
Accept: */*
{
  "catchup-message": "text"
}

Aborts a catchpoint catchup.

delete

Given a catchpoint, it aborts catching up to this catchpoint

Authorizations
Path parameters
catchpointstring ยท catchpointRequired

A catch point

Pattern: [0-9]{1,10}#[A-Z0-9]{1,53}
Responses
200Success
application/json
delete
DELETE /v2/catchup/{catchpoint} HTTP/1.1
Host: algo.nownodes.io
X-Algo-API-Token: YOUR_API_KEY
Accept: */*
{
  "catchup-message": "text"
}

Last updated