> ## 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 persisted performance and indexed vault history



## OpenAPI

````yaml /openapi.json get /api/history
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/history:
    get:
      tags:
        - Portfolio
      summary: Get persisted performance and indexed vault history
      operationId: getHistory
      responses:
        '200':
          description: Market observations, vault snapshots, and capital events
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true

````