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

# List register accounts with base-currency balances



## OpenAPI

````yaml /openapi.json get /api/accounts/registers
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/accounts/registers:
    get:
      tags:
        - Accounts
      summary: List register accounts with base-currency balances
      responses:
        '200':
          description: Active register accounts with their balances
          content:
            application/json:
              schema:
                type: object
                properties:
                  registers:
                    type: array
                    items:
                      $ref: '#/components/schemas/RegisterAccount'
                required:
                  - registers
      security:
        - bearerAuth: []
components:
  schemas:
    RegisterAccount:
      allOf:
        - $ref: '#/components/schemas/Account'
        - type: object
          properties:
            registerKind:
              type: string
              enum:
                - clearing
                - bank
            balance:
              type: number
            balanceCurrency:
              type: string
          required:
            - registerKind
            - balance
            - balanceCurrency
          additionalProperties:
            nullable: true
    Account:
      type: object
      properties:
        id:
          type: integer
          minimum: 0
          exclusiveMinimum: true
        key:
          type: string
        name:
          type: string
        type:
          type: string
        parentId:
          type: integer
          nullable: true
          minimum: 0
          exclusiveMinimum: true
        kind:
          type: string
          enum:
            - group
            - category
        emoji:
          type: string
          nullable: true
        color:
          type: string
          nullable: true
        description:
          type: string
          nullable: true
        registerKind:
          type: string
          nullable: true
          enum:
            - clearing
            - bank
            - null
        bankAccount:
          type: object
          nullable: true
          properties:
            id:
              type: integer
              minimum: 0
              exclusiveMinimum: true
            feedType:
              type: string
            institutionName:
              type: string
              nullable: true
            institutionLogo:
              type: string
              nullable: true
            institutionUrl:
              type: string
              nullable: true
            isoCurrencyCode:
              type: string
              nullable: true
          required:
            - id
            - feedType
            - institutionName
            - institutionLogo
            - institutionUrl
            - isoCurrencyCode
          additionalProperties:
            nullable: true
      required:
        - id
        - key
        - name
        - type
        - parentId
        - kind
        - bankAccount
      additionalProperties:
        nullable: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token issued from the Equated app under Settings → API Tokens.

````