Blocks

Get blocks returns real-time or historical blockchain block numbers and timestamps.

Get Blocks

GET https://api.abyiss.com/v1/blocks

Provides a list of compatible blockchains for retrieving block numbers and timestamps in an array.

Query Parameters

Get Blockchain Blocks

GET https://api.abyiss.com/v1/blocks/{blockchain}

Returns an array of real-time or historical blockchain block numbers and timestamps.

Path Parameters

Query Parameters

[
    {
        "number": "17017595",
        "timestamp": "1681127183",
        "size": "379123",
        "gasLimit": "30000000",
        "gasUsed": "21721808",
        "totalDifficulty": "58750003716598352816469",
        "author": "0x4838b106fce9647bdf1e7877bf73ce8b0bad5f97"
    }
]

Copy & Paste Code

curl -H "apiKey: API KEY" https://api.abyiss.com/v1/blocks/ethereum

Response Object

Example URL: https://api.abyiss.com/v1/blocks/ethereum?apiKey=

[
    {
        "number": "17017595",
        "timestamp": "1681127183",
        "size": "379123",
        "gasLimit": "30000000",
        "gasUsed": "21721808",
        "totalDifficulty": "58750003716598352816469",
        "author": "0x4838b106fce9647bdf1e7877bf73ce8b0bad5f97"
    }
]

Response Attributes

Last updated