Arbiscan
HomeTwitterKnowledge Base
Nova Arbiscan
Nova Arbiscan
  • Introduction
  • ✨Getting Started
    • Creating an Account
    • Getting an API key
    • Endpoint URLs
  • 🎯API Endpoints
    • Accounts
    • Contracts
    • Transactions
    • Blocks
    • Logs
    • Geth Proxy
    • Tokens
    • Stats
  • 🤝Support
    • FAQ
    • Rate Limits
    • Common Error Messages
    • Getting Help
  • Visit Nova Arbiscan
Powered by GitBook
On this page
  • Get Estimated Block Countdown Time by BlockNo
  • Get Block Number by Timestamp
  1. API Endpoints

Blocks

PreviousTransactionsNextLogs

Last updated 2 years ago

Get Estimated Block Countdown Time by BlockNo

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

https://api-nova.arbiscan.io/api
   ?module=block
   &action=getblockcountdown
   &blockno=10000000
   &apikey=YourApiKeyToken

Try this endpoint in your

Query Parameters

Parameter
Description

blockno

Sample Response

{
    "status": "1",
    "message": "OK",
    "result": {
        "CurrentBlock": "1844539",
        "CountdownBlock": "10000000",
        "RemainingBlock": "8155461",
        "EstimateTimeInSec": "69321433.5"
    }
}

Get Block Number by Timestamp

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

https://api-nova.arbiscan.io/api
   ?module=block
   &action=getblocknobytime
   &timestamp=1661517573
   &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": "133469"
}

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

Try this endpoint in your

Tip : Convert a regular date-time to a

🎯
🔗
browser
🔗
browser
⏳
Unix timestamp.
12697906