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

# Get hedge execution status



## OpenAPI

````yaml /openapi.json get /api/execution/hedge
openapi: 3.1.0
info:
  title: MolQ API
  version: 1.0.0
  description: >-
    Live MolQ vault, market, agent, and execution state. Public endpoints are
    read-only. Operator endpoints require an explicitly configured credential.
servers:
  - url: https://api.molq.site
security: []
tags:
  - name: System
  - name: Portfolio
  - name: Agent
  - name: Execution
paths:
  /api/execution/hedge:
    get:
      tags:
        - Execution
      summary: Get hedge execution status
      operationId: getHedgeExecution
      parameters:
        - name: targetNotionalUsd
          in: query
          required: false
          schema:
            type: number
            minimum: 0
      responses:
        '200':
          description: Bybit configuration and current short exposure
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HedgeExecution'
components:
  schemas:
    HedgeExecution:
      type: object
      properties:
        configured:
          type: boolean
        tradingEnabled:
          type: boolean
        venue:
          type: string
          const: Bybit
        symbol:
          type: string
          const: ETHUSDT
        targetNotionalUsd:
          type: number
        currentShortQuantity:
          type: number
        currentShortNotionalUsd:
          type: number
        accountEquityUsd:
          type: number
        unrealizedPnlUsd:
          type: number
        message:
          type: string

````