Fetch history on demand
Kick off a bounded historical backfill for a mint WITHOUT subscribing a slot — the fastest way to evaluate a token. Returns immediately with a status URL; poll GET /v1/token/:mint/backfill (and /ohlcv) as the data fills in.
Body
| Field | Type | Description |
|---|---|---|
mintrequired | string | The token mint (base58). |
networkoptional | mainnet | devnet | Default mainnet. Devnet has no archive (400). |
hoursoptional | number | Lookback window to walk (default 72h; capped server-side). |
Response fields
| Field | Type | Description |
|---|---|---|
enqueued | boolean | True when a backfill was queued; false when already indexed (see reason). |
reason | string | When enqueued=false: already_indexed | invalid / why nothing was queued. |
statusUrl | string | Poll this (GET /v1/token/:mint/backfill) for progress. |
No mint slot is consumed. The first GET /v1/token/:mint/ohlcv on an unindexed mint triggers the same bounded fetch automatically. Drained by the gTFA queue worker (recent slots) — much faster than the archive path.