Introduction
Octopus - Market API
- Docs
- Warehouse
- GETGet Market Data
- GETGet Market Data (batch)
- GETGet Market Pair
- GETGet All Pairs
- GETGet Pair Trades
- GETGet Historical Market Data
- GETGet Historical Market Data (batch)
- GETGet Historical Pair Data (OHLCV)
- GETQuery Asset Data
- GETQuery Token Data
- GETGet Token Holders
- GETGet Blockchain Pairs
- GETGet Pulse (new, bonding, bonded)
[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
The response is of type object
.
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"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.