SnowScan
HomeTwitterKnowledge BaseAPI PRO
Fuji SnowScan
Fuji SnowScan
  • Fuji Testnet
  • 🎯API Endpoints
    • Accounts
    • Contracts
    • Transactions
    • Blocks
    • Logs
    • Geth Proxy
    • Tokens
    • Stats
  • Visit Fuji SnowScan
Powered by GitBook
On this page
  • Get Block 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 Rewards by BlockNo

Returns the block timestamp, miner and rewards.

https://api-testnet.snowscan.xyz/api
   ?module=block
   &action=getblockreward
   &blockno=8435247
   &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",
   "result":{
      "blockNumber":"8435247",
      "timeStamp":"1649697977",
      "blockMiner":"0x0100000000000000000000000000000000000000",
      "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-testnet.snowscan.xyz/api
   ?module=block
   &action=getblockcountdown
   &blockno=8445247
   &apikey=YourApiKeyToken

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":"8435286",
      "CountdownBlock":"8445247",
      "RemainingBlock":"9961",
      "EstimateTimeInSec":"21929.2"
   }
}

Get Block Number by Timestamp

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

https://api-testnet.snowscan.xyz/api
   ?module=block
   &action=getblocknobytime
   &timestamp=1649698104
   &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":"8435307"
}

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.