Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.0xarchive.io/llms.txt

Use this file to discover all available pages before exploring further.

Reliable market-data jobs do not assume every source is continuous. They check the market, window, and data family before using results.

Pattern

Failure Behavior

SignalClient behavior
Missing coverageDo not fill with synthetic data
Stale freshnessDelay, narrow the window, or mark output as stale
Incident overlapStore incident metadata with the job
Replay gapRebuild from a safe snapshot or stop the reconstruction
5xx or timeoutRetry with jitter, then check status and incidents

Reliability Contract

Define the output status for every job. A result can be complete, stale, partial, skipped, retried, or failed. Do not leave the status implicit. That matters for research notebooks, generated dashboards, downstream agents, and backtests because they may otherwise treat partial market data as clean.

Gap Handling

When a gap appears, stop using the affected local state until it is rebuilt. For REST history, rerun the smallest window that contains the issue. For replay, restart from a safe checkpoint or snapshot. For local books, discard unsafe state and resync before applying more diffs.

Human And Agent Use

Humans should see the gap state in logs or UI. Coding agents should be instructed not to interpolate missing records unless the user explicitly asks for a transformation. The default behavior is to preserve truth, mark the output, and point to the data-quality route that justified the decision.

Evaluation Fit

Reliability is part of the product, not a support appendix. A team evaluating historical market data should ask how coverage, freshness, incidents, replay gaps, and request IDs are represented before the data touches research notebooks, dashboards, alerts, or models.

Review Rule

Every durable dataset should have a quality status. Store whether the job was clean, stale, partial, interrupted, or skipped. Store the data-quality response and any request IDs that produced that status. That makes later charts, models, and reports explainable. If the status cannot be explained later, the job did not preserve enough operational context.
Last modified on May 18, 2026