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

# Get account by ID

> Returns detailed account information including balance, status, and ledger account identifiers



## OpenAPI

````yaml get /v1/accounts/{accountId}
openapi: 3.0.3
info:
  title: Ledger Client API
  version: 1.0.0
  description: API for ledger operations - parties, accounts, transactions
servers: []
security: []
tags:
  - name: Account Statements
    description: Retrieve account transaction history
  - name: Accounts
    description: Account management operations
  - name: Open Banking - Accounts
    description: PSD2 Account Information Service (AIS) - Account endpoints
  - name: Open Banking - Funds Confirmation
    description: PSD2 Confirmation of Funds Service (PIIS)
  - name: Open Banking - Payments
    description: PSD2 Payment Initiation Service (PIS)
  - name: Open Banking - Transactions
    description: PSD2 Account Information Service (AIS) - Transaction endpoints
  - name: Parties
    description: Party management operations
  - name: Payments
    description: Payment operations
  - name: Transaction Postings
    description: Retrieve transaction postings
  - name: Transactions
    description: Transaction execution operations
paths:
  /v1/accounts/{accountId}:
    get:
      tags:
        - Accounts
      summary: Get specific account
      description: Returns account by ID
      parameters:
        - description: Account ID
          example: 019bdb2a-960f-789d-8955-21720e6cdeed
          name: accountId
          in: path
          required: true
          schema:
            $ref: '#/components/schemas/UUID'
      responses:
        '200':
          description: Account details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAccountResponse'
        '404':
          description: Account not found
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
        '500':
          description: Internal server error
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
components:
  schemas:
    UUID:
      format: uuid
      pattern: >-
        [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}
      type: string
    GetAccountResponse:
      description: Account information
      type: object
      properties:
        accountId:
          format: uuid
          description: Account ID
          pattern: >-
            [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}
          type: string
          example: 019bdb2a-960f-789d-8955-21720e6cdeed
        iban:
          description: Account IBAN
          type: string
          example: LT647044001231465456
        partyId:
          format: uuid
          description: Party ID
          pattern: >-
            [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}
          type: string
          example: 019bdb2a-960f-789d-8955-21720e6cdeee
        status:
          description: Account status
          type: string
          allOf:
            - $ref: '#/components/schemas/AccountStatus'
        createdAt:
          format: date-time
          description: Account creation timestamp
          type: string
          example: '2026-01-22T13:47:21.542Z'
        statusUpdatedAt:
          format: date-time
          description: Timestamp of the last status change
          type: string
          example: '2026-01-22T13:47:21.542Z'
        balances:
          description: Balances per currency
          type: array
          items:
            $ref: '#/components/schemas/BalanceResponse'
        currentLedgerAccount:
          description: Current ledger account identifier
          type: string
          example: CUSTOMER:party-uuid:account-uuid:CURRENT
        holdingLedgerAccount:
          description: Holding ledger account identifier
          type: string
          example: CUSTOMER:party-uuid:account-uuid:HOLDING
    Problem:
      description: >-
        RFC 9457 problem details. See [Error Handling](/ledger/error-handling)
        for the response shape.
      required:
        - status
        - title
        - instance
      type: object
      properties:
        status:
          format: int32
          description: HTTP status code
          type: integer
          example: 500
        title:
          description: Short, human-readable summary of the problem type
          type: string
        instance:
          description: URI reference identifying this occurrence of the problem
          type: string
        detail:
          description: >-
            Human-readable explanation specific to this occurrence of the
            problem
          type: string
          nullable: true
    AccountStatus:
      description: Account status
      enum:
        - OPENED
        - CLOSED
        - BLOCKED
      type: string
    BalanceResponse:
      description: Balance for a specific currency
      type: object
      properties:
        currency:
          description: Currency code
          type: string
          example: EUR
        availableBalance:
          description: Available balance
          type: number
          example: 100000
        holdingBalance:
          description: Holding balance
          type: number
          example: 100000

````