LogoLogo
BscScan
BscScan
  • Introduction
  • ✨Getting Started
    • Creating an Account
    • Getting an API Key
    • Endpoint URLs
  • 🎯API Endpoints
    • Accounts
    • Contracts
    • Transactions
    • Blocks
    • Logs
    • Geth Proxy
    • Tokens
    • Gas Tracker
    • Stats
  • 🏆API PRO
    • API PRO Endpoints
  • 🤝Support
    • FAQ
    • Rate Limits
    • Common Error Messages
    • Getting Help
  • Visit BscScan.com
Powered by GitBook
On this page
  • Get Block Rewards by BlockNo
  • Get Estimated Block Countdown Time by BlockNo
  • Get Block Number by Timestamp

Was this helpful?

  1. API Endpoints

Blocks

PreviousTransactionsNextLogs

Last updated 1 month ago

Was this helpful?

Get Block Rewards by BlockNo

Returns the block reward awarded for validating a certain block.

https://api.bscscan.com/api
   ?module=block
   &action=getblockreward
   &blockno=2170000
   &apikey=YourApiKeyToken

Try this endpoint in your

Query Parameters

Parameter
Description

blockno

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":{
      "blockNumber":"2170000",
      "timeStamp":"1605182836",
      "blockMiner":"0x68bf0b8b6fb4e317a0f9d6f03eaf8ce6675bc60d",
      "blockReward":"13657915000000000",
      "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 validated.

https://api.bscscan.com/api
   ?module=block
   &action=getblockcountdown
   &blockno=11926850
   &apikey=YourApiKeyToken

Query Parameters

Parameter
Description

blockno

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":{
      "CurrentBlock":"10526852",
      "CountdownBlock":"10926850",
      "RemainingBlock":"399998",
      "EstimateTimeInSec":"1240008.8"
   }
}

Get Block Number by Timestamp

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

https://api.bscscan.com/api
   ?module=block
   &action=getblocknobytime
   &timestamp=1601510400
   &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":"946206"
}

the integer block number to check block rewards for eg.

Try this endpoint in your

the integer block number to estimate time remaining to be validated eg.

Try this endpoint in your

Tip : Convert a regular date-time to a

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