> ## 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 live dashboard state

> Returns vault balances, active and target APY projections, live market inputs, recent agent decisions, and hedge execution state.



## OpenAPI

````yaml /openapi.json get /api/dashboard
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/dashboard:
    get:
      tags:
        - Portfolio
      summary: Get live dashboard state
      description: >-
        Returns vault balances, active and target APY projections, live market
        inputs, recent agent decisions, and hedge execution state.
      operationId: getDashboard
      responses:
        '200':
          description: Live dashboard snapshot
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Dashboard'
components:
  schemas:
    Dashboard:
      type: object
      required:
        - portfolio
        - market
        - decisions
      properties:
        portfolio:
          type: object
          additionalProperties: true
        market:
          type: object
          properties:
            mantleYieldApy:
              type: number
            fundingApy:
              type: number
            estimatedNetApy:
              type: number
              description: Projected APY from current active exposure.
            targetNetApy:
              type: number
              description: Hypothetical projected APY at the complete target allocation.
            shieldContributionApy:
              type: number
            hedgeContributionApy:
              type: number
            hedgeRatio:
              type: number
            liquidityScore:
              type: number
            riskScore:
              type: number
            updatedAt:
              type: string
              format: date-time
        decisions:
          type: array
          items:
            type: object
            additionalProperties: true
        hedgeExecution:
          $ref: '#/components/schemas/HedgeExecution'
    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

````