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

# Hyperliquid Active Targets

> Returns the currently active Hyperliquid prediction markets from the live outcome catalog. Pass an official Hyperliquid trade slug to scope the response to one market, or omit `slug` to return all active markets. `price` is the market `targetPrice`, while `yesPrice` and `noPrice` are the current side mids.

<Note>
  This authenticated endpoint returns the currently active Hyperliquid prediction markets and their contract terms. Pass an official Hyperliquid trade slug like `btc-above-78213-yes-may-04-0600`, or omit `slug` to return the full live catalog. `price` is the contract's `targetPrice`, while `yesPrice` and `noPrice` are the current side mids from Hyperliquid.
</Note>


## OpenAPI

````yaml GET /api/v1/hyperliquid/targets/active
openapi: 3.1.0
info:
  title: Vatic API
  version: 1.0.0
  description: >-
    Polymarket price targets, Hyperliquid prediction market data, market
    timestamps, fee calculators, and order management for systematic prediction
    market trading.
servers:
  - url: https://api.vatic.trading
    description: Production
security: []
paths:
  /api/v1/hyperliquid/targets/active:
    get:
      tags:
        - Hyperliquid
      summary: Active Hyperliquid prediction targets
      description: >-
        Returns the currently active Hyperliquid prediction markets from the
        live outcome catalog. Pass an official Hyperliquid trade slug to scope
        the response to one market, or omit `slug` to return all active markets.
        `price` is the market `targetPrice`, while `yesPrice` and `noPrice` are
        the current side mids.
      operationId: getHyperliquidTargetsActive
      parameters:
        - name: slug
          in: query
          required: false
          schema:
            type: string
            example: btc-above-78213-yes-may-04-0600
          description: >-
            Optional official Hyperliquid trade slug, or the full Hyperliquid
            trade URL. If omitted, returns all active Hyperliquid prediction
            markets currently in the live catalog.
      responses:
        '200':
          description: Active Hyperliquid target markets
          content:
            application/json:
              example:
                now: '2026-05-03T10:20:04.943Z'
                slug: btc-above-78213-yes-may-04-0600
                source: hyperliquid
                results:
                  - outcomeId: 1
                    marketSlug: btc-above-78213-may-04-0600
                    yesSlug: btc-above-78213-yes-may-04-0600
                    noSlug: btc-above-78213-no-may-04-0600
                    tradeUrls:
                      'yes': >-
                        https://app.hyperliquid.xyz/trade/btc-above-78213-yes-may-04-0600
                      'no': >-
                        https://app.hyperliquid.xyz/trade/btc-above-78213-no-may-04-0600
                    underlying: BTC
                    marketClass: priceBinary
                    period: 1d
                    windowStart: 1777788000
                    windowStartIso: '2026-05-03T06:00:00.000Z'
                    expiry: 1777874400
                    expiryIso: '2026-05-04T06:00:00.000Z'
                    source: hyperliquid
                    price: 78213
                    yesPrice: 0.592455
                    noPrice: 0.407545
                    question: BTC above 78213 at 2026-05-04T06:00:00.000Z
        '401':
          description: API key required or invalid
        '404':
          description: No active Hyperliquid prediction market found for the requested slug
        '502':
          description: Hyperliquid upstream error
      security:
        - ApiKey: []
components:
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Required for order endpoints. Obtain your API key from the Vatic
        dashboard.

````