Rank

Definition

The rank metric is defined by the numerical position, starting from 1, of the asset within the list of all assets sorted by market capitalization in ascending order. Assets with smaller market capitalizations are assigned lower numerical positions.

Access

Free Access


Measuring Unit

Position in a list


Data Type

Timeseries Data



Frequency

Five-Minute Intervals


Latency

Price Latency


Available Assets


SanAPI

Get historical ranks of an asset

{
getMetric(metric: "rank") {
timeseriesDataJson(
slug: "ethereum"
from: "2020-04-01T00:00:00Z"
to: "2020-04-07T00:00:00Z"
interval: "1d"
)
}
}

Get the latest rank of each asset

{
allProjects {
slug
rank: aggregatedTimeseriesData(
metric: "rank"
from: "utc_now-1d"
to: "utc_now"
aggregation: LAST
)
}
}

Run in Explorer