Docs/Token data/Coverage / contiguity

Coverage / contiguity

GET/v1/token/{mint}/coveragePublic

The trust artifact Birdeye doesn't ship: how confident we are in a mint's recent series — the highest confirmed slot, when the contiguity reconciler last checked it, how many interior gaps it found vs repaired, unpriced swaps, and the oldest swap we hold.

A mint is reconciled once for the whole platform, so coverage is a mint-level fact and needs no API key. Use it to verify our numbers against the chain instead of trusting them blind: a recent lastReconcileSec with gapWindowsDetected == gapWindowsRepaired and zero unpricedSwapCount means the recent window is contiguous and fully priced.

Path parameters

FieldTypeDescription
mintrequiredstringToken mint address (base58).

Query parameters

FieldTypeDescription
networkoptionalmainnet | devnetNetwork to read. Devnet returns an empty payload (with a note) until its ingestor lands. default mainnet

Response fields

FieldTypeDescription
lastConfirmedSlotnumber | nullHighest slot whose candles are reconciled (confirmed=true).
lastReconcileSecnumber | nullUnix time the contiguity reconciler last walked this mint.
gapWindowsDetectednumberInterior gap windows the reconciler has detected.
gapWindowsRepairednumberOf those, how many a re-walk has back-filled (detected==repaired ⇒ contiguous).
unpricedSwapCountnumberSwaps held but not priceable to USD (excluded from candles).
earliestSwapSecnumber | nullUnix time of the oldest swap we hold for this mint.
notestring | nullPresent (and figures zeroed) for non-mainnet networks we don't index.
lastConfirmedSlot reflects the reconciled tail; live candles ahead of it are provisional (confirmed=false) until the next reconcile pass.
Pair this with the per-candle confirmed flag on OHLCV to know exactly which bars are settled.