Catchup

Starts a catchpoint catchup.

Given a catchpoint, it starts catching up to this catchpoint

POSThttps://algo.nownodes.io/v2/catchup/{catchpoint}
Path parameters
catchpoint*string (catchpoint)

A catch point

Pattern: [0-9]{1,10}#[A-Z0-9]{1,53}
Query parameters
Response
Body
catchup-message*string

Catchup start response string

Request
const response = await fetch('https://algo.nownodes.io/v2/catchup/{catchpoint}', {
    method: 'POST',
    headers: {},
});
const data = await response.json();
Response
{
  "catchup-message": "text"
}

Aborts a catchpoint catchup.

Given a catchpoint, it aborts catching up to this catchpoint

DELETEhttps://algo.nownodes.io/v2/catchup/{catchpoint}
Path parameters
catchpoint*string (catchpoint)

A catch point

Pattern: [0-9]{1,10}#[A-Z0-9]{1,53}
Response
Body
catchup-message*string

Catchup abort response string

Request
const response = await fetch('https://algo.nownodes.io/v2/catchup/{catchpoint}', {
    method: 'DELETE',
    headers: {},
});
const data = await response.json();
Response
{
  "catchup-message": "text"
}

Last updated