For the complete documentation index, see llms.txt. This page is also available as Markdown.

getRewindCoverage

getRewindCoverage — Archive-wide ingest coverage and gap list

post
/rewind

Returns the archive's coverage summary and gap list.

params is either omitted, [], or [<config>].

Authorizations
AuthorizationstringOptional

Pass Authorization: <api-key> on each request.

Body
jsonrpcstring · enumRequiredExample: 2.0Possible values:
idone ofRequiredExample: 1
stringOptional
or
integerOptional
methodstring · enumRequiredExample: getRewindCoveragePossible values:
Responses
200

Successful response.

application/json
jsonrpcstring · enumRequiredPossible values:
idone ofRequired
stringOptional
or
integerOptional
post/rewind
curl -X POST https://basic.rpc.solanavibestation.com/rewind \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "getRewindCoverage",
    "params": []
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "earliestSlot": 240000000,
    "latestSlot": 251234567,
    "slotRange": 11234568,
    "missingSlotCount": 42,
    "skippedSlotCount": 5821,
    "gapPercent": 0.000374,
    "gaps": [
      {
        "fromSlot": 245100000,
        "toSlot": 245100042,
        "status": "missing"
      }
    ],
    "truncated": false,
    "filteredOwners": [
      "Vote111111111111111111111111111111111111111",
      "Stake11111111111111111111111111111111111111"
    ],
    "filteredPubkeys": [],
    "note": "gaps lists only archive misses (status=missing); leader-skipped slots are counted in skippedSlotCount but not listed as gaps. gapPercent excludes skipped slots from the denominator. filteredOwners/filteredPubkeys list account classes whose ongoing writes are deliberately not tracked — simulations touching those accounts return -32017 FilteredAccountStale."
  }
}

Last updated