Skip to main content
POST
/
api
/
messari
/
assets
/messari/assets
curl --request POST \
  --url https://api.anysite.io/api/messari/assets \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "asset": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "MessariAsset",
    "name": "<string>",
    "slug": "<string>",
    "symbol": "<string>",
    "about": "<string>",
    "sectors": [],
    "sub_sectors": [],
    "tags": [],
    "links": [],
    "price": 123,
    "market_cap": 123,
    "fully_diluted_market_cap": 123,
    "market_cap_dominance": 123,
    "volume_24h": 123,
    "market_cap_rank": 123,
    "sector_rank": 123,
    "circulating_supply": 123,
    "total_supply": 123,
    "max_supply": 123,
    "ath": 123,
    "ath_date": "<string>",
    "percent_down_from_ath": 123,
    "cycle_low": 123,
    "cycle_low_date": "<string>",
    "market_count": 123,
    "exchange_count": 123,
    "fees_daily_usd": 123,
    "revenue_daily_usd": 123,
    "trade_start": "<string>",
    "price_change_percentage_1h": 123,
    "price_change_percentage_24h": 123,
    "price_change_percentage_7d": 123,
    "price_change_percentage_30d": 123,
    "price_change_percentage_90d": 123,
    "price_change_percentage_1y": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
asset
string
required

Asset slug or ticker symbol

Minimum string length: 1
Examples:

"bitcoin"

"ethereum"

"BTC"

"solana"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:MessariAsset
name
string | null
slug
string | null
symbol
string | null
about
string | null
sectors
string[]
sub_sectors
string[]
tags
string[]
price
number | null
market_cap
number | null
fully_diluted_market_cap
number | null
market_cap_dominance
number | null
volume_24h
number | null
market_cap_rank
integer | null
sector_rank
integer | null
circulating_supply
number | null
total_supply
number | null
max_supply
number | null
ath
number | null
ath_date
string | null
percent_down_from_ath
number | null
cycle_low
number | null
cycle_low_date
string | null
market_count
integer | null
exchange_count
integer | null
fees_daily_usd
number | null
revenue_daily_usd
number | null
trade_start
string | null
price_change_percentage_1h
number | null
price_change_percentage_24h
number | null
price_change_percentage_7d
number | null
price_change_percentage_30d
number | null
price_change_percentage_90d
number | null
price_change_percentage_1y
number | null