TetherTracker
Log inStart free
TetherTracker

Real-time USDT analytics and whale tracking for professional traders.

Product

  • Dashboard
  • Screener
  • Features
  • Pricing

Resources

  • Read me
  • API docs
  • Status

Company

  • Privacy
  • Terms
  • Twitter
© 2026 Tether Tracker. All rights reserved.System status →
    API docs

    Public JSON endpoints.

    The read-only endpoints that power the public pages are open to use — no key required. They are rate-limited per IP and the shapes below may evolve with the product, so treat this as a beta API.

    • Base URL: https://www.tethertracker.pro
    • Rate limits: per-IP limits apply to every endpoint; heavy callers get 429. Responses are CDN-cached — polling faster than once a minute buys you nothing.
    • Authenticated data: the live whale feed (/api/recent-transactions) and alert APIs require a signed-in subscriber session and are not part of the public surface.
    GET/api/ticker

    Recent high-value USDT transactions across tracked exchange wallets — the feed behind the homepage ticker.

    [
      {
        "type": "inflow",
        "label": "BINANCE",
        "amount": "$25.0M",
        "timestamp": 1751980800000
      }
    ]
    GET/api/volume

    USDT 24-hour global trading volume (CoinGecko-sourced, cached 10 minutes).

    {
      "volume": 79200000000,
      "formatted": "$79.2B",
      "timestamp": 1751980800000
    }
    GET/api/tether-marketcap

    USDT market capitalization. When the upstream source is unreachable a fallback value is served with "isFallback": true.

    {
      "marketCap": 184210000000,
      "formatted": "$184.2B",
      "formattedFull": "$184,210,000,000"
    }
    GET/api/usdt-supply

    USDT supply & issuance: market cap, circulating supply, 24h mint/burn from the Tether contract's Issue/Redeem events, and the ETH/TRON chain split. Fields are null when a chain source is unavailable.

    {
      "marketCap": 184210000000,
      "circulatingSupply": 184370000000,
      "minted24h": 0,
      "burned24h": 0,
      "netIssuance24h": 0,
      "mintBurnAvailable": true,
      "recentEvents": [],
      "chainSupply": { "eth": 95080000000, "tron": 89290000000, "tronHolders": 74900000 },
      "fetchedAt": "2026-07-08T22:00:00.000Z"
    }
    GET/api/etf-flows

    Daily net inflows/outflows and AUM for US spot BTC & ETH ETFs (30-day history). "available": false with a reason when the provider is unreachable.

    {
      "available": true,
      "provider": "sosovalue",
      "series": [
        {
          "symbol": "BTC",
          "latestNet": 21400000,
          "aum": 77260000000,
          "points": [
            { "date": "2026-07-07", "netInflow": 21400000,
              "totalNetAssets": 77260000000, "cumNetInflow": 41200000000 }
          ]
        }
      ],
      "fetchedAt": "2026-07-08T22:00:00.000Z"
    }
    GET/api/screener

    The crypto screener's ranked coin list — the same data as the free /screener page.

    Query paramValues
    categorygainers · losers · most_traded · trending · all (default gainers)
    timeframe15m · 1h · 4h · 1d · 7d · 30d (default 1d)
    searchFilter by coin name or symbol
    page1–100 (default 1)
    limit10–100 results per page (default 50)
    GET /api/screener?category=gainers&timeframe=1d&limit=10

    Building something on this data? We'd like to hear about it — support@tethertracker.pro. Live pipeline health is on the status page.