Metacore
Get All Blockchains
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 Pools (new, bonding, bonded)
[BETA] Wallet Explorer API
Metacore
Metacore
Get All Blockchains
GET
/
1
/
blockchains
curl --request GET \
--url https://api.mobula.io/api/1/blockchains
{
"data": [
{
"name": "<string>",
"shortName": "<string>",
"rpcs": [
"<string>"
],
"explorer": "<string>",
"color": "<string>",
"privateRpcs": [
"<string>"
],
"chainId": "<string>",
"evmChainId": 123,
"cosmosChainId": "<string>",
"testnet": true,
"multicall_contract": "<string>",
"uniswapV3Factory": [
"<string>"
],
"eth": {
"name": "<string>",
"symbol": "<string>",
"address": "<string>",
"type": "eth",
"decimals": 123,
"denom": "<string>",
"logo": "<string>",
"id": 123
},
"stable": {
"name": "<string>",
"symbol": "<string>",
"address": "<string>",
"type": "eth",
"decimals": 123,
"denom": "<string>",
"logo": "<string>",
"blockchain": "<string>",
"blockchains": [
"<string>"
],
"contracts": [
"<string>"
]
},
"routers": [
{
"address": "<string>",
"name": "<string>",
"factory": "<string>",
"fee": 123
}
],
"tokens": [
{
"address": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"type": "<string>"
}
],
"supportedProtocols": [
"<string>"
],
"logo": "<string>",
"coingeckoChain": "<string>",
"dexscreenerChain": "<string>",
"isLayer2": true,
"coverage": [
"<string>"
]
}
]
}
Response
200 - application/json
Blockchains response
The response is of type object
.
curl --request GET \
--url https://api.mobula.io/api/1/blockchains
{
"data": [
{
"name": "<string>",
"shortName": "<string>",
"rpcs": [
"<string>"
],
"explorer": "<string>",
"color": "<string>",
"privateRpcs": [
"<string>"
],
"chainId": "<string>",
"evmChainId": 123,
"cosmosChainId": "<string>",
"testnet": true,
"multicall_contract": "<string>",
"uniswapV3Factory": [
"<string>"
],
"eth": {
"name": "<string>",
"symbol": "<string>",
"address": "<string>",
"type": "eth",
"decimals": 123,
"denom": "<string>",
"logo": "<string>",
"id": 123
},
"stable": {
"name": "<string>",
"symbol": "<string>",
"address": "<string>",
"type": "eth",
"decimals": 123,
"denom": "<string>",
"logo": "<string>",
"blockchain": "<string>",
"blockchains": [
"<string>"
],
"contracts": [
"<string>"
]
},
"routers": [
{
"address": "<string>",
"name": "<string>",
"factory": "<string>",
"fee": 123
}
],
"tokens": [
{
"address": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"type": "<string>"
}
],
"supportedProtocols": [
"<string>"
],
"logo": "<string>",
"coingeckoChain": "<string>",
"dexscreenerChain": "<string>",
"isLayer2": true,
"coverage": [
"<string>"
]
}
]
}