Skip to main content
POST
/
pipelines
/
{name}
/
backfill
cURL
curl --request POST \
  --url https://app.indexing.co/dw/pipelines/{name}/backfill \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "network": "<string>",
  "value": "<string>",
  "beatEnd": 123,
  "beatStart": 123,
  "beats": [
    123
  ]
}
'
{
  "message": "<string>"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

name
string
required

Body

application/json

Backfill parameters

network
string

Network to backfill against (required)

Example:

"BASE"

value
string

Value to filter the backfill against (required)

Example:

"0x123..."

beatEnd
integer

The last beat to check (optional)

beatStart
integer

The first beat to check (optional)

beats
integer[]

A list of beats to explicitly check (optional)

Response

success

message
string
required