- Docs
- Api%2Freference%2Fexplorer%2FListCheckpoints
List checkpoints
Retrieve a paginated list of transaction checkpoints processed by the sequencer. This endpoint provides access to checkpoint information including status, signatures, and associated actions. Checkpoints can be filtered by various criteria including action ID, checkpoint ID, hash, status, signer, and creation timestamps.
Query Parameters
Filter resources by their unique identifier
Filter resources by the organization they belong to
Search term for autocomplete functionality
How many items to return at one time (max 100)
int64Pagination token for retrieving the next page of results
Sort order for the results (ascending or descending)
"asc" | "desc"Field name to sort the results by
Filter checkpoints by transaction hash
Filter checkpoints by processing status
Filter checkpoints by signer address
Filter checkpoints created after this date and time
date-timeFilter checkpoints created before this date and time
date-timeFilter checkpoints created on or after this date and time
date-timeFilter checkpoints created on or before this date and time
date-timeFilter checkpoints modified after this date and time
date-timeFilter checkpoints modified before this date and time
date-timeFilter checkpoints modified on or after this date and time
date-timeFilter checkpoints modified on or before this date and time
date-timeResponse Body
application/json
application/json
application/json
curl -X GET "https://api-testnet.dual.network/checkpoints"{
"checkpoints": [
{
"id": "string",
"hash": "string",
"sequence": 0,
"start_hash": "string",
"start_sequence": 0,
"end_sequence": 0,
"end_hash": "string",
"sender": "string",
"l2_tx_hash": "string",
"ipfs_url": "string",
"status": "building",
"proof": {
"type": "string",
"value": "string",
"public_values": "string",
"vkey": "string",
"message": "string"
},
"proof_id": "string",
"error": "string",
"affected_batches": [
{
"id": "string",
"sequence": 0,
"hash": "string"
}
],
"when_completed": "2019-08-24T14:15:22Z",
"when_modified": "2019-08-24T14:15:22Z",
"when_created": "2019-08-24T14:15:22Z"
}
],
"next": "string"
}{
"code": 0,
"message": "string",
"details": {}
}{
"code": 0,
"message": "string",
"details": {}
}