Get Latest Block
GET/api/v1/blocks/latest
Free [1 Credits]
Retrieve the latest block.
Responses
- 200
OK
- */*
- Schema
- Example (from schema)
Schema
blockId int64required
datetime date-timerequired
hash HASH (string)required
parentHash Parent HASH (string)required
totalTransactionCount int64required
blockReward
object
required
minted Minted KLAY (number)required
totalFee Total Fee (number)
burntFee Total Burnt Fee (number)
blockSize int64required
blockCommittee
object
required
blockProposer Block Proposer (string)required
validators Validators (string)[]required
baseFeePerGas Block Gas Cost (number)required
{
"blockId": 0,
"datetime": "2025-01-17T12:41:59.739Z",
"hash": "string",
"parentHash": "string",
"totalTransactionCount": 0,
"blockReward": {
"minted": 0,
"totalFee": 0,
"burntFee": 0
},
"blockSize": 0,
"blockCommittee": {
"blockProposer": "string",
"validators": [
"string"
]
},
"baseFeePerGas": 0
}
Loading...