getRewindCoverage
Authorizations
AuthorizationstringOptional
Pass Authorization: <api-key> on each request.
Body
jsonrpcstring · enumRequiredExample:
2.0Possible values: idone ofRequiredExample:
1stringOptional
integerOptional
methodstring · enumRequiredExample:
getRewindCoveragePossible values: Responses
200
Successful response.
application/json
jsonrpcstring · enumRequiredPossible values:
idone ofRequired
stringOptional
integerOptional
401
Authentication required or invalid.
application/json
403
Insufficient permissions for the request.
application/json
429
Rate limit exceeded for this tier.
application/json
500
Unexpected server error.
application/json
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