Introduction
Octopus - Market API
[BETA] Wallet Explorer API
Metacore
Raw Data
Get Raw Blocks
GET
/
2
/
blocks
/
specific
curl --request GET \
--url https://api.mobula.io/api/2/blocks/specific
{
"raw": [
{
"chain_id": "<any>",
"number": "<string>",
"author": "<string>",
"hash": "<string>",
"parent_hash": "<string>",
"timestamp": "<string>",
"transactions": [
"<string>"
],
"epoch": "<string>",
"round": "<string>",
"epoch_chain_id": "<string>",
"gas_used": "<string>"
}
],
"unified": [
{
"label": "<string>",
"value": "<string>",
"link": "<string>",
"hasCopy": true,
"logo": "<string>",
"icon": true,
"color": "native",
"inAccordion": true,
"tooltip": "<string>",
"tooltipPosition": "top"
}
]
}
Retrieves raw and formatted block data for a given block on a specified blockchain. The block can be identified using either a block number or a block hash and is supported across all EVM and non-EVM blockchains supported by Mobula
Response
200 - application/json
Raw Events response
Available options:
native
, black
, gray
Available options:
top
, right
, bottom
, left
curl --request GET \
--url https://api.mobula.io/api/2/blocks/specific
{
"raw": [
{
"chain_id": "<any>",
"number": "<string>",
"author": "<string>",
"hash": "<string>",
"parent_hash": "<string>",
"timestamp": "<string>",
"transactions": [
"<string>"
],
"epoch": "<string>",
"round": "<string>",
"epoch_chain_id": "<string>",
"gas_used": "<string>"
}
],
"unified": [
{
"label": "<string>",
"value": "<string>",
"link": "<string>",
"hasCopy": true,
"logo": "<string>",
"icon": true,
"color": "native",
"inAccordion": true,
"tooltip": "<string>",
"tooltipPosition": "top"
}
]
}