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

# TWAP orders of one address

> Every TWAP for one address, with its current state and execution stats.



## OpenAPI

````yaml /api-reference/openapi.json get /twaps/user/{user_address}
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/user/{user_address}:
    get:
      tags:
        - TWAPs
      summary: TWAP orders of one address
      description: Every TWAP for one address, with its current state and execution stats.
      parameters:
        - name: user_address
          in: path
          required: true
          schema:
            type: string
            description: User address (0x + 40 hex)
            title: User Address
          description: User address (0x + 40 hex)
        - name: status
          in: query
          required: false
          schema:
            enum:
              - activated
              - finished
              - terminated
              - all
            type: string
            description: TWAP status filter
            default: all
            title: Status
          description: TWAP status filter
        - name: coin
          in: query
          required: false
          schema:
            description: Filter by coin
            title: Coin
            type: string
            nullable: true
          description: Filter by coin
        - name: hours
          in: query
          required: false
          schema:
            description: Window in hours
            title: Hours
            type: integer
            maximum: 720
            minimum: 1
            nullable: true
          description: Window in hours
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            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: DESC
            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: 30 TWAPs for user
                data:
                  - twapId: 2230869
                    status: activated
                    coin: ENA
                    side: B
                    sz: 49727
                    executedSz: 0
                    executedNtl: 0
                    executionPct: 0
                    minutes: 5
                    reduceOnly: false
                    randomize: false
                    startTime: '2026-09-19T07:05:46'
                    updatedAt: '2026-09-19T07:05:46.945925'
                  - twapId: 2230862
                    status: finished
                    coin: ENA
                    side: B
                    sz: 100000
                    executedSz: 100000
                    executedNtl: 17910.3739
                    executionPct: 100
                    minutes: 5
                    reduceOnly: false
                    randomize: false
                    startTime: '2026-09-19T07:00:03'
                    updatedAt: '2026-09-19T07:05:05.028539'
                total_count: 30
                execution_time_ms: 213.25
                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.

````