Blocks
getBlockHeight
Returns the latest block number for EVM/Bitcoin or slot for Solana.
Parameters
| Name | Required | Description |
|---|---|---|
| chain | yes | Network slug |
Response Fields
| Field | Type |
|---|---|
data | object |
chain | string |
height | integer |
Supported Networks
EthereumPolygonBNB ChainOptimismBaseAvalancheArbitrumGnosisMoonbeamLineaHyperliquidSolanaBitcoin
getBlockTransactions
Returns all transactions in a specific block with full transaction objects including from, to, value, input data, and gas details.
Parameters
| Name | Required | Description |
|---|---|---|
| chain | yes | Network slug |
| blockNumber | yes | Block number to fetch transactions from e.g. 21000000 |
Response Fields
| Field | Type |
|---|---|
data | object |
blockNumber | integer |
hash | string |
timestamp | integer |
transactionCount | integer |
transactions | object[] |
hash | string |
from | string |
to | string |
value | string |
gasPrice | string |
Supported Networks
EthereumPolygonBNB ChainOptimismBaseAvalancheArbitrumGnosisMoonbeamLineaHyperliquid
getBlockByNumber
Get blocks by number from multiple chains in a single call. Pass chain:blockNumber pairs. Supports EVM chains, Solana, and Bitcoin in the same batch — Bitcoin returns Bitcoin Core's `getblock` payload (the `confirmations` field drifts as new tip blocks arrive).
Parameters
| Name | Required | Description |
|---|---|---|
| items | yes | Comma-separated chain:blockNumber pairs (EVM/Solana/Bitcoin) e.g. ethereum:21000000,bitcoin:900000 |
Response Fields
| Field | Type |
|---|---|
data | object |
count | integer |
results | object[] |
chain | string |
height | string |
block | object |
number | string |
hash | string |
getBlockByHash
Get blocks by hash from multiple chains in a single call. Pass chain:blockHash pairs.
Parameters
| Name | Required | Description |
|---|---|---|
| items | yes | Comma-separated chain:blockHash pairs e.g. ethereum:0x4e3a3754410177e6937ef1f84bba68ea139e8d1a2258c5f85db9f1cd715a1bdd |
Response Fields
| Field | Type |
|---|---|
data | object |
count | integer |
results | object[] |
chain | string |
hash | string |
block | object |
number | string |