Introduction
Octopus - Market API
[BETA] Wallet Explorer API
Metacore
Metacore
Get Metadata
GET
/
metadata
curl --request GET \
--url https://api.mobula.io/api/1/metadata
{
"data": {
"id": 123,
"name": "<string>",
"symbol": "<string>",
"contracts": [
"<string>"
],
"blockchains": [
"<string>"
],
"decimals": [
123
],
"twitter": "<string>",
"website": "<string>",
"logo": "<string>",
"price": 123,
"market_cap": 123,
"liquidity": 123,
"volume": 123,
"description": "<string>",
"kyc": "<string>",
"audit": "<string>",
"total_supply_contracts": [
"<string>"
],
"circulating_supply_addresses": [
"<string>"
],
"total_supply": 123,
"circulating_supply": 123,
"discord": "<string>",
"max_supply": 123,
"chat": "<string>",
"tags": [
"<string>"
],
"investors": [
{
"lead": true,
"name": "<string>",
"type": "<string>",
"image": "<string>",
"country_name": "<string>",
"description": "<string>"
}
],
"distribution": [
{
"percentage": 123,
"name": "<string>"
}
],
"release_schedule": [
{
"allocation_details": {},
"tokens_to_unlock": 123,
"unlock_date": 123
}
],
"cexs": [
{
"logo": "<string>",
"name": "<string>",
"id": "<string>"
}
],
"listed_at": "<string>"
}
}
Query quick start
Input in “asset” the name of the asset you want to query, or the contract address while adding the blockchain as a second parameter. The market data asset query pattern is explained in great details here, with blockchain format, etc.
Data details
Some assets, which you can explore on mobula.io (example: Avalanche) also have enriched data about fundraising, tokenomics, investors, etc. Some assets won’t have the id field, due to them not being listed on Mobula.
Response
200 - application/json
Metadata response
curl --request GET \
--url https://api.mobula.io/api/1/metadata
{
"data": {
"id": 123,
"name": "<string>",
"symbol": "<string>",
"contracts": [
"<string>"
],
"blockchains": [
"<string>"
],
"decimals": [
123
],
"twitter": "<string>",
"website": "<string>",
"logo": "<string>",
"price": 123,
"market_cap": 123,
"liquidity": 123,
"volume": 123,
"description": "<string>",
"kyc": "<string>",
"audit": "<string>",
"total_supply_contracts": [
"<string>"
],
"circulating_supply_addresses": [
"<string>"
],
"total_supply": 123,
"circulating_supply": 123,
"discord": "<string>",
"max_supply": 123,
"chat": "<string>",
"tags": [
"<string>"
],
"investors": [
{
"lead": true,
"name": "<string>",
"type": "<string>",
"image": "<string>",
"country_name": "<string>",
"description": "<string>"
}
],
"distribution": [
{
"percentage": 123,
"name": "<string>"
}
],
"release_schedule": [
{
"allocation_details": {},
"tokens_to_unlock": 123,
"unlock_date": 123
}
],
"cexs": [
{
"logo": "<string>",
"name": "<string>",
"id": "<string>"
}
],
"listed_at": "<string>"
}
}