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

# Provisional per-account balance checks (feed vs books)

> Sign-normalized provider balance vs native posted ledger activity through a date. A signal, not the statement proof.



## OpenAPI

````yaml /openapi.json get /api/reconciliations/account-checks
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/account-checks:
    get:
      tags:
        - Reconciliation
      summary: Provisional per-account balance checks (feed vs books)
      description: >-
        Sign-normalized provider balance vs native posted ledger activity
        through a date. A signal, not the statement proof.
      parameters:
        - schema:
            type: string
          required: true
          name: to
          in: query
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  accounts:
                    type: array
                    items:
                      type: object
                      properties: {}
                      additionalProperties:
                        nullable: true
                required:
                  - accounts
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````