Blocks
Returns the block reward and 'Uncle' block rewards.
https://api-sepolia.etherscan.io/api
?module=block
&action=getblockreward
&blockno=1090932
&apikey=YourApiKeyToken
Request
Response
Query Parameters
Parameter | Description |
---|---|
blockno | the integer block number to check block rewards for eg. 12697906 |
Sample Response
{
"status":"1",
"message":"OK",
"result":{
"blockNumber":"1090932",
"timeStamp":"1652449149",
"blockMiner":"0xd87def8bbd2c4d59494611ab259a2005c154212a",
"blockReward":"2000031500000000000",
"uncles":[
],
"uncleInclusionReward":"0"
}
}
Returns the estimated time remaining, in seconds, until a certain block is mined.
https://api-sepolia.etherscan.io/api
?module=block
&action=getblockcountdown
&blockno=1090932
&apikey=YourApiKeyToken
Request
Response
Query Parameters
Parameter | Description |
---|---|
blockno | the integer block number to estimate time remaining to be mined eg. 12697906 |
Sample Response
{
"status":"1",
"message":"OK",
"result":{
"CurrentBlock":"9548810",
"CountdownBlock":"9588666",
"RemainingBlock":"39856",
"EstimateTimeInSec":"577927.0"
}
}
Returns the block number that was mined at a certain timestamp.
https://api-sepolia.etherscan.io/api
?module=block
&action=getblocknobytime
×tamp=1652459409
&closest=before
&apikey=YourApiKeyToken
Request
Response
Query Parameters
Parameter | Description |
---|---|
timestamp | the integer representing the Unix timestamp in seconds. |
closest | the closest available block to the provided timestamp, either before or after |
Sample Response
{
"status":"1",
"message":"OK",
"result":"1091685"
}
Last modified 8mo ago