get_top_trending_tokens
Retrieve the top trending tokens within a specified time frame for market cap or volume comparison, using a structured request format.
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)
{
  "$defs": {
    "TopTrendingTokensRequest": {
      "properties": {
        "time_frame": {
          "default": "24h",
          "description": "Time frame to get the top trending tokens",
          "enum": [
            "5m",
            "15m",
            "30m",
            "1h",
            "2h",
            "3h",
            "4h",
            "5h",
            "6h",
            "12h",
            "24h"
          ],
          "title": "Time Frame",
          "type": "string"
        }
      },
      "title": "TopTrendingTokensRequest",
      "type": "object"
    }
  },
  "properties": {
    "top_trending_tokens_requests": {
      "$ref": "#/$defs/TopTrendingTokensRequest"
    }
  },
  "required": [
    "top_trending_tokens_requests"
  ],
  "title": "get_top_trending_tokensArguments",
  "type": "object"
}