> ## 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.

# Fills of a TWAP order

> Individual fills of a TWAP order, historical and live merged.



## OpenAPI

````yaml /api-reference/openapi.json get /twaps/{twap_id}/fills
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.
paths:
  /twaps/{twap_id}/fills:
    get:
      tags:
        - TWAPs
      summary: Fills of a TWAP order
      description: Individual fills of a TWAP order, historical and live merged.
      parameters:
        - name: twap_id
          in: path
          required: true
          schema:
            type: integer
            description: TWAP ID
            title: Twap Id
          description: TWAP ID
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            default: 100
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: order
          in: query
          required: false
          schema:
            type: string
            default: ASC
            title: Order
            enum:
              - ASC
              - DESC
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                  data:
                    type: array
                    items:
                      type: object
                  total_count:
                    type: integer
                    nullable: true
                  next_cursor:
                    type: string
                    nullable: true
                  has_more:
                    type: boolean
                    nullable: true
              example:
                success: true
                message: 24 fills for TWAP 2230869
                data:
                  - user: '0xb16209e95a9693e6462f8c4004da4a824597eb5f'
                    coin: ENA
                    coinMeaning: ENA
                    px: 0.17936
                    sz: 1117
                    side: B
                    time: '2026-09-19T07:05:48.010999'
                    hash: >-
                      0x0000000000000000000000000000000000000000000000000000000000000000
                    oid: 549642586101
                    tid: 197797633061547
                    fee: 0.086549
                    feeToken: USDC
                    builderFee: 0
                    notional: 200.34511999999998
                    priorityGas: null
                  - user: '0xb16209e95a9693e6462f8c4004da4a824597eb5f'
                    coin: ENA
                    coinMeaning: ENA
                    px: 0.17936
                    sz: 3403
                    side: B
                    time: '2026-09-19T07:05:48.010999'
                    hash: >-
                      0x0000000000000000000000000000000000000000000000000000000000000000
                    oid: 549642586101
                    tid: 288291383004676
                    fee: 0.263676
                    feeToken: USDC
                    builderFee: 0
                    notional: 610.36208
                    priorityGas: null
                total_count: 24
                execution_time_ms: 1208.05
                next_cursor: null
                has_more: null
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.

````