Ultron.
Tool reference / Ultron

get_market_leaders

Current trending, gainers, losers, volume or new-pool sample. Exact two-hour/day rankings use historical candles for a bounded subset.

Updated September 8, 2026 · Independent beta

Robinhood market leaders

Current trending, gainers, losers, volume or new-pool sample. Exact two-hour/day rankings use historical candles for a bounded subset.

Permission and calling convention

Required scope: chain:read. This tool reads data or account-owned state.

This tool does not sign or broadcast a transaction. Check errors, source timestamps and explicit unavailable fields before using the result.

POST /api/tools/get_market_leaders
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/json

Input schema

Inputs are validated against this current schema. Use exact values from live source results rather than substituting a ticker for a contract or a different chain.

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "sort": {
      "default": "trending",
      "type": "string",
      "enum": [
        "trending",
        "gainers",
        "losers",
        "volume",
        "new"
      ]
    },
    "window": {
      "default": "h24",
      "type": "string",
      "enum": [
        "m5",
        "h1",
        "h6",
        "h24",
        "h2",
        "h3",
        "today"
      ]
    },
    "includeMajorAssets": {
      "default": false,
      "type": "boolean"
    },
    "minAbsPriceChangePercent": {
      "type": "number",
      "minimum": 0,
      "maximum": 1000000
    },
    "minLiquidityUsd": {
      "default": 10000,
      "type": "number",
      "minimum": 0,
      "maximum": 1000000000000
    },
    "minMarketCapUsd": {
      "type": "number",
      "minimum": 0
    },
    "maxMarketCapUsd": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "quoteToken": {
      "type": "string",
      "pattern": "^0x[0-9a-fA-F]{40}$"
    },
    "pages": {
      "default": 2,
      "type": "integer",
      "minimum": 1,
      "maximum": 3
    },
    "limit": {
      "default": 8,
      "type": "integer",
      "minimum": 1,
      "maximum": 15
    },
    "timezone": {
      "default": "UTC",
      "type": "string",
      "maxLength": 80
    }
  },
  "required": [
    "sort",
    "window",
    "includeMajorAssets",
    "minLiquidityUsd",
    "pages",
    "limit",
    "timezone"
  ],
  "additionalProperties": false
}

Need a concrete starting point?

Build something →Track something →