> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hypedexer.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List covered markets

> Markets covered by the market history archive (April 2024 to February 2026), with first and last trade, trade count and traded notional. Filter with `kind` (perp, spot, hip3). Spot pairs use the Hyperliquid `@index` name, HIP-3 markets the `dex:COIN` name.



## OpenAPI

````yaml /api-reference/openapi.json get /market/coins
openapi: 3.0.3
info:
  title: 'Hypedexer API: Indexed Data'
  version: 1.0.0
  description: >-
    API to query indexed Hyperliquid trading data.


    This API provides access to stored/indexed trading data:

    - **Fills**: Executed orders and fills (Spot-only or All = Spot + Perp)

    - **Analytics**: Aggregations and statistics based on indexed data

    - **Completed Trades**: Trade objects and their related fills

    - **Users**: User overviews, performance and activity

    - **Social Trading**: Per-trader equity curve, PnL calendar, account
    leverage and top trades

    - **Funding**: Funding rate history, user funding payments, predicted rates

    - **Liquidations**: Liquidation events with filters

    - **Overview**: Market dashboard metrics (volume, fees, traders, PnL)

    - **Spot**: Spot token metadata, pairs, and auctions

    - **TWAPs**: TWAP orders, execution stats and fills

    - **Vaults**: Vault details, summaries, equity, ledger


    > Note: No live streaming. Responses are computed from indexed data.
servers:
  - url: https://api.hypedexer.com
    description: Production, routed to the nearest region (EU or JP)
security:
  - ApiKeyAuth: []
tags:
  - name: Fills
    description: Fills endpoints.
  - name: Analytics
    description: Aggregations and stats.
  - name: Completed Trades
    description: Trades and fills.
  - name: Users
    description: User profiles.
  - name: Funding
    description: Funding rates and payments (HL-compatible).
  - name: Liquidations
    description: Liquidation events.
  - name: Overview
    description: Market dashboard metrics.
  - name: Spot
    description: Spot token metadata, pairs and auctions.
  - name: TWAPs
    description: TWAP orders, stats and fills.
  - name: Vaults
    description: Vault details, summaries, equity and ledger.
  - name: Social Trading
    description: >-
      Per-trader equity, PnL calendar, performance, account leverage and top
      trades.
  - name: Market history
    description: >-
      Historical Hyperliquid market microstructure: best bid/offer aggregates
      and spread statistics (April 2024 to February 2026), and the order book
      reconstructed minute by minute: April 2024 to February 2026 from our
      archive (top ~20 levels per side) and, since 23 September 2026, the full
      order book replayed from our own node. Served from the EU region.
paths:
  /market/coins:
    get:
      tags:
        - Market history
      summary: List covered markets
      description: >-
        Markets covered by the market history archive (April 2024 to February
        2026), with first and last trade, trade count and traded notional.
        Filter with `kind` (perp, spot, hip3). Spot pairs use the Hyperliquid
        `@index` name, HIP-3 markets the `dex:COIN` name.
      parameters:
        - name: kind
          in: query
          description: Filter by market kind
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
              example:
                success: true
                message: 215 coins
                data:
                  - coin: BTC
                    kind: perp
                    dex: ''
                    symbol_archive: PSWP-BTC/USDT
                    first_trade: '2024-04-28T12:59:59.567000'
                    last_trade: '2026-02-13T20:06:07.161000'
                    trades: 168852309
                    notional_usd: 1460953408878.69
                  - coin: ETH
                    kind: perp
                    dex: ''
                    symbol_archive: PSWP-ETH/USDT
                    first_trade: '2024-04-28T12:59:57.740000'
                    last_trade: '2026-02-14T23:59:58.060000'
                    trades: 119418469
                    notional_usd: 1023108236235.63
                total_count: 215
                execution_time_ms: 10.66
                next_cursor: null
                has_more: null
        '400':
          description: >-
            Invalid window or parameter (for example a window larger than the
            interval allows)
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: >-
        Your Hypedexer API key. Create one in the console at
        https://app.hypedexer.com. `Authorization: Bearer <key>` and the
        `api_key` query parameter are accepted as well.

````