Docs
Search⌘ K
  • Home
  • About The Graph
  • Supported Networks
  • Protocol Contracts
  • Subgraphs
    • Substreams
      • Token API
        • Hypergraph
          • AI Suite
            • Indexing
              • Graph Horizon
                • Resources
                  Token API > Hyperliquid Platform Endpoints

                  Platform Activity

                  GET/v1/hyperliquid/platform

                  Returns a platform-wide time series aggregating all coins and DEXs into one row per timestamp. Each row carries trade volume (split by side), trade and counterparty counts, distinct active coins, total fees, and a liquidation slice (liquidations_volume, liquidations_count, unique_liquidated_users).

                  Use this endpoint instead of summing per-coin or per-DEX data client-side when you need cross-market totals. Per-coin OHLCV lives on /v1/hyperliquid/markets/ohlc; per-DEX on /v1/hyperliquid/dexes.

                  Query Parameters

                  ParameterDescriptionValue
                  interval
                  string

                  The interval* for which to aggregate price data (1-minute, 5-minutes, 10-minutes, 30-minutes, hourly, 4-hours, daily or weekly).
                  *Plan restricted.

                  • Default value: 1d
                  • Accepted values: 1m, 5m, 10m, 30m, 1h, 4h, 1d, 1w
                  1d
                  start_time
                  string

                  UNIX timestamp in seconds or date string (e.g. "2025-01-01T00:00:00Z", "2025-01-01", ...).

                    end_time
                    string

                    UNIX timestamp in seconds or date string (e.g. "2025-01-01T00:00:00Z", "2025-01-01", ...).

                      limit
                      integer

                      Number of items* returned in a single request.
                      *Plan restricted.

                      • Default value: 10
                      • Minimum value: 1
                      • Maximum value: 1000
                      page
                      integer

                      Page number to fetch.
                      Empty data array signifies end of results.

                      • Default value: 1
                      • Minimum value: 1
                      • Maximum value: 767465558638

                      Potential Responses

                      StatusDescription
                      200

                      Successful Response

                      400

                      Client side error

                      401

                      Authentication failed

                      403

                      Forbidden

                      404

                      Not found

                      500

                      Server side error

                      ⁠Edit on GitHub⁠

                      Market Open InterestUser Activity
                      Test this endpoint

                      1curl --request GET \2  --url 'https://token-api.thegraph.com/v1/hyperliquid/platform?interval=1d&limit=10&page=1' \3  --header 'Authorization: Bearer {token}'

                      1{2  "data": [3    {4      "timestamp": "2026-04-30 00:00:00",5      "interval_min": 1440,6      "volume": 8137264556.87,7      "buy_volume": 4191715134.16,8      "sell_volume": 3945549422.71,9      "transactions": 5881845,10      "buys": 2928397,11      "sells": 2953448,12      "active_coins": 391,13      "total_fees": 469081.69,14      "liquidations_volume": 16898784.51,15      "liquidations_count": 3950,16      "unique_liquidated_users": 195617    }18  ]19}
                      The GraphStatusTestnetBrand AssetsForumSecurityPrivacy PolicyTerms of Service