> ## 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.

# Run a privileged vault rebalance



## OpenAPI

````yaml /openapi.json post /api/execution/vault/rebalance
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/vault/rebalance:
    post:
      tags:
        - Execution
      summary: Run a privileged vault rebalance
      operationId: rebalanceVault
      responses:
        '200':
          description: Vault keeper result
        '400':
          $ref: '#/components/responses/BadRequest'
      security:
        - operatorKey: []
components:
  responses:
    BadRequest:
      description: Validation, authorization, configuration, or execution error
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
  securitySchemes:
    operatorKey:
      type: apiKey
      in: header
      name: X-Molq-Operator-Key
      description: >-
        Private operator credential. Never expose this key in a browser or
        public client.

````