Coverage / contiguity
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
| Field | Type | Description |
|---|---|---|
mintrequired | string | Token mint address (base58). |
Query parameters
| Field | Type | Description |
|---|---|---|
networkoptional | mainnet | devnet | Network to read. Devnet returns an empty payload (with a note) until its ingestor lands. default mainnet |
Response fields
| Field | Type | Description |
|---|---|---|
lastConfirmedSlot | number | null | Highest slot whose candles are reconciled (confirmed=true). |
lastReconcileSec | number | null | Unix time the contiguity reconciler last walked this mint. |
gapWindowsDetected | number | Interior gap windows the reconciler has detected. |
gapWindowsRepaired | number | Of those, how many a re-walk has back-filled (detected==repaired ⇒ contiguous). |
unpricedSwapCount | number | Swaps held but not priceable to USD (excluded from candles). |
earliestSwapSec | number | null | Unix time of the oldest swap we hold for this mint. |
note | string | null | Present (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.