> ## 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 agent runtime status



## OpenAPI

````yaml /openapi.json get /api/agent/status
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/agent/status:
    get:
      tags:
        - Agent
      summary: Get agent runtime status
      operationId: getAgentStatus
      responses:
        '200':
          description: Runtime, logger, identity, and recent decision reports
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true

````