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

# Get Ledger Accounts

> Fetch one `ledger_account` by id, workspace-scoped. Returns 404 when the id is outside the caller's workspace.



## OpenAPI

````yaml GET /v1/ledger-accounts/{id}
openapi: 3.1.0
info:
  title: Well Document API
  version: 1.0.0
  description: API for uploading and managing financial documents in the Well platform
servers:
  - url: https://api.wellapp.ai
security: []
paths:
  /v1/ledger-accounts/{id}:
    get:
      tags:
        - Records read endpoints
      summary: Get ledger account
      description: >-
        Fetch one `ledger_account` by id, workspace-scoped. Returns 404 when the
        id is outside the caller's workspace.
      operationId: getLedgerAccounts
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: workspaceId
          in: query
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: The ledger_account record.
          content:
            application/json:
              example:
                data:
                  type: ledger_account
                  id: uuid
                  attributes: {}
        '404':
          description: ledger_account not found / not in workspace scope.

````