get_top_trending_tokens
Retrieve the most actively traded cryptocurrency tokens within a specific time period to analyze market trends and compare performance metrics like market capitalization and trading volume.
Instructions
Get the top trending tokens in a particular time frame. Great for comparing market cap or volume.
Expects a TopTrendingTokensRequest, returns a list of tokens with their details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
top_trending_tokens_requests | Yes |
Input Schema (JSON Schema)
{
"properties": {
"top_trending_tokens_requests": {
"$ref": "#/$defs/TopTrendingTokensRequest"
}
},
"required": [
"top_trending_tokens_requests"
],
"type": "object"
}