cURL
curl --request POST \
--url https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet} \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"chains": [
"base"
],
"fromBlock": 123,
"toBlock": 123,
"fromTime": "2026-06-23T00:00:00Z",
"toTime": "<string>"
}
'import requests
url = "https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}"
payload = {
"chains": ["base"],
"fromBlock": 123,
"toBlock": 123,
"fromTime": "2026-06-23T00:00:00Z",
"toTime": "<string>"
}
headers = {
"X-API-KEY": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
chains: ['base'],
fromBlock: 123,
toBlock: 123,
fromTime: '2026-06-23T00:00:00Z',
toTime: '<string>'
})
};
fetch('https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'chains' => [
'base'
],
'fromBlock' => 123,
'toBlock' => 123,
'fromTime' => '2026-06-23T00:00:00Z',
'toTime' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}"
payload := strings.NewReader("{\n \"chains\": [\n \"base\"\n ],\n \"fromBlock\": 123,\n \"toBlock\": 123,\n \"fromTime\": \"2026-06-23T00:00:00Z\",\n \"toTime\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}")
.header("X-API-KEY", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"chains\": [\n \"base\"\n ],\n \"fromBlock\": 123,\n \"toBlock\": 123,\n \"fromTime\": \"2026-06-23T00:00:00Z\",\n \"toTime\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"chains\": [\n \"base\"\n ],\n \"fromBlock\": 123,\n \"toBlock\": 123,\n \"fromTime\": \"2026-06-23T00:00:00Z\",\n \"toTime\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"message": "queued 2 chain(s) for backfill",
"chains": [
"ethereum",
"base"
]
}{
"error": "<string>"
}Deploying Pipelines
Backfill Wallet
Backfill a pipeline for a specific wallet address
POST
/
pipelines
/
{name}
/
backfill
/
{wallet}
cURL
curl --request POST \
--url https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet} \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '
{
"chains": [
"base"
],
"fromBlock": 123,
"toBlock": 123,
"fromTime": "2026-06-23T00:00:00Z",
"toTime": "<string>"
}
'import requests
url = "https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}"
payload = {
"chains": ["base"],
"fromBlock": 123,
"toBlock": 123,
"fromTime": "2026-06-23T00:00:00Z",
"toTime": "<string>"
}
headers = {
"X-API-KEY": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-KEY': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
chains: ['base'],
fromBlock: 123,
toBlock: 123,
fromTime: '2026-06-23T00:00:00Z',
toTime: '<string>'
})
};
fetch('https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'chains' => [
'base'
],
'fromBlock' => 123,
'toBlock' => 123,
'fromTime' => '2026-06-23T00:00:00Z',
'toTime' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}"
payload := strings.NewReader("{\n \"chains\": [\n \"base\"\n ],\n \"fromBlock\": 123,\n \"toBlock\": 123,\n \"fromTime\": \"2026-06-23T00:00:00Z\",\n \"toTime\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}")
.header("X-API-KEY", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"chains\": [\n \"base\"\n ],\n \"fromBlock\": 123,\n \"toBlock\": 123,\n \"fromTime\": \"2026-06-23T00:00:00Z\",\n \"toTime\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.indexing.co/dw/pipelines/{name}/backfill/{wallet}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"chains\": [\n \"base\"\n ],\n \"fromBlock\": 123,\n \"toBlock\": 123,\n \"fromTime\": \"2026-06-23T00:00:00Z\",\n \"toTime\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"message": "queued 2 chain(s) for backfill",
"chains": [
"ethereum",
"base"
]
}{
"error": "<string>"
}Authorizations
Path Parameters
The name of the pipeline
The wallet address to backfill for (0x… for EVM, base58 for Solana)
Body
application/json
Restrict the fan-out to these networks (subset of the pipeline's backfill-ready chains)
Example:
["base"]
Lower block bound, applied as-given to every selected chain — pair with a single-chain chains filter since block numbers differ per chain. Takes precedence over time bounds.
Upper block bound (same caveat as fromBlock).
Lower time bound (ISO-8601 or epoch-ms), converted to a block bound per chain from its observed block time. Approximate by design — 'the last month', not a block-exact cut.
Example:
"2026-06-23T00:00:00Z"
Upper time bound (same conversion as fromTime).
⌘I