Token Rank
Retrieve a list of top 10 mints whose ratio of avg_1min/avg_15min is greater than or equal to 1.0.
Supports ranking by:
Price metrics across different time periods
Configurable filters for top/bottom performers
Ratio-based filtering and analysis
Authorizations
Body
Request for token ranking information
metricone ofOptional
Metric to rank by (defaults to Price if not specified)
nullOptional
string · enumOptionalExample:
Metric to use for ranking tokens
Price
Possible values: operationone ofOptional
Operation to apply to the metric (defaults to Average if not specified)
nullOptional
string · enumOptionalExample:
Mathematical operation to apply to the metric
Average
Possible values: numeratorone ofOptional
Time period for the numerator in ratio calculations
nullOptional
string · enumOptionalExample:
Time period for metric calculations
PastTwentyFourHours
Possible values: denominatorone ofOptional
Time period for the denominator in ratio calculations
nullOptional
string · enumOptionalExample:
Time period for metric calculations
PastTwentyFourHours
Possible values: count_filterone ofOptional
Filter to limit the number of results returned
nullOptional
or
ratio_filterone ofOptional
Filter based on ratio values
nullOptional
or
or
Responses
200
Success
application/json
400
Invalid input
application/json
401
Unauthorized
text/plain
403
Forbidden
text/plain
429
Too Many Requests
text/plain
500
Internal Server Error
text/plain
post
POST /rank HTTP/1.1
Host: beta-api.solanavibestation.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 134
{
"metric": "Price",
"operation": "Average",
"numerator": "PastTwentyFourHours",
"denominator": "PastOneHour",
"count_filter": {
"Top": {
"n": 10
}
}
}
{
"ordered_mints": [
[
"EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
{
"rank": 1,
"ratio": 2.45
}
],
[
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
{
"rank": 2,
"ratio": 1.87
}
],
[
"Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
{
"rank": 3,
"ratio": 1.23
}
]
]
}
Last updated