> ## 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 Aave and Bybit market inputs



## OpenAPI

````yaml /openapi.json get /api/integrations/markets
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/integrations/markets:
    get:
      tags:
        - Portfolio
      summary: Get Aave and Bybit market inputs
      operationId: getMarkets
      responses:
        '200':
          description: Current market snapshot
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true

````