> ## Documentation Index
> Fetch the complete documentation index at: https://docs.equated.co/llms.txt
> Use this file to discover all available pages before exploring further.

# The org's one-time non-bank opening (INITIAL_BOOKS)

> Draft lines (persisted as a DRAFT source=OPENING journal entry), the derived Opening Balance Equity plug, and completion state. Null before anything has touched the opening.



## OpenAPI

````yaml /openapi.json get /api/reconciliations/opening
openapi: 3.1.0
info:
  title: Equated API
  version: 1.0.0
  description: >-
    Agent-facing accounting API. Authenticate with a bearer token issued from
    Settings → API Tokens, or via the in-app session cookie when called from the
    web client.
servers:
  - url: https://app.equated.co
    description: API server
security: []
paths:
  /api/reconciliations/opening:
    get:
      tags:
        - Reconciliation
      summary: The org's one-time non-bank opening (INITIAL_BOOKS)
      description: >-
        Draft lines (persisted as a DRAFT source=OPENING journal entry), the
        derived Opening Balance Equity plug, and completion state. Null before
        anything has touched the opening.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  opening:
                    type: object
                    nullable: true
                    properties: {}
                    additionalProperties:
                      nullable: true
                required:
                  - opening
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````