Blockchain system start
Returns the blockchain system start time
Responses
- 200
- 500
Get system start time
application/json
Schema
Example (from schema)
Example
Schema
data SystemStart required
last_updated object required
Details of the most recent block processed by the indexer (aka chain tip); that is, the data returned is correct as of this block in time.
block_hash string required
Hex-encoded hash of the most recently processed block (aka chain tip)
block_slot int64 required
Absolute slot of the most recently processed block (aka chain tip)
timestamp string required
UTC timestamp of when the most recently processed block was minted
{
"data": "string",
"last_updated": {
"block_hash": "string",
"block_slot": 0,
"timestamp": "string"
}
}
{
"data": "2017-09-23 21:44:51",
"last_updated": {
"timestamp": "2022-10-10 20:25:28",
"block_hash": "2e220d7adfe5b9e6444894ae237679c29d71fc4b44cc36aa9156262b4bb4c159",
"block_slot": 96402974
}
}
Internal server error
Loading...