Verified by the sovseal team
GET /replay
Replay replication log entries.
This endpoint is used for state catch-up and crash-recovery. It streams replication log chunks chronologically starting after a specified sequence number.
Request URL
GET /replayQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
since | integer | Yes | Retrieve entries with sequence numbers strictly greater than this value. |
Response Schema (200 OK)
Returns a list of chunks up to a limit of $1000$ rows:
{
"chunks": [
{
"sequence_number": 11,
"block_hash": "f5a2b3c4...",
"ciphertext_b64": "SGVsbG8gV29ybGQ=",
"merkle_root": "84c8a8d11d95...",
"created_at": "2026-06-09T16:45:30.123Z"
}
],
"count": 1
}