zkSync
HomeKnowledge BaseTwitter
zkSync Era Sepolia
zkSync Era Sepolia
  • Sepolia Testnet
  • 🎯API Endpoints
    • Accounts
    • Contracts
    • Transactions
    • Blocks
    • Logs
    • Geth/Parity Proxy
    • Tokens
    • Stats
  • Visit zkSync Era Sepolia Explorer
Powered by GitBook
On this page
  • Get Block And Uncle Rewards by BlockNo
  • Get Estimated Block Countdown Time by BlockNo
  • Get Block Number by Timestamp
  1. API Endpoints

Blocks

PreviousTransactionsNextLogs

Last updated 1 year ago

Get Block And Uncle Rewards by BlockNo

Returns the block reward and 'Uncle' block rewards.

https://api-sepolia-era.zksync.network/api
   ?module=block
   &action=getblockreward
   &blockno=255990
   &apikey=YourApiKeyToken

Try this endpoint in your

Query Parameters

Parameter
Description

blockno

the integer block number to check block rewards for eg. 12697906

Sample Response

{
  "status": "1",
  "message": "OK-Missing/Invalid API Key, rate limit of 1/3sec applied",
  "result": {
    "blockNumber": "255990",
    "timeStamp": "1706581953",
    "blockMiner": "0x0000000000000000000000000000000000000000",
    "blockReward": "0",
    "uncles": [],
    "uncleInclusionReward": "0"
  }
}

​​ Tip : The timestamp field is denoted in

Get Estimated Block Countdown Time by BlockNo

Returns the estimated time remaining, in seconds, until a certain block is mined.

https://api-sepolia-era.zksync.network/api
   ?module=block
   &action=getblockcountdown
   &blockno=255990
   &apikey=YourApiKeyToken

Query Parameters

Parameter
Description

blockno

the integer block number to estimate time remaining to be mined eg. 12697906

Sample Response

{
  "status": "0",
  "message": "NOTOK-Missing/Invalid API Key, rate limit of 1/3sec applied",
  "result": "Error! Block number already pass"
}

Get Block Number by Timestamp

Returns the block number that was mined at a certain timestamp.

https://api-sepolia-era.zksync.network/api
   ?module=block
   &action=getblocknobytime
   &timestamp=1706248266
   &closest=before
   &apikey=YourApiKeyToken

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":"218200"
}

Try this endpoint in your

Try this endpoint in your

Tip : Convert a regular date-time to a

🎯
🔗
⏳
browser
Unix timestamp.
🔗
browser
🔗
browser
⏳
Unix timestamp.