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

# Get account by ID



## OpenAPI

````yaml get /v1/accounts/{id}
openapi: 3.0.0
info:
  title: Corebanq - Accounts API
  description: API endpoints for managing bank accounts
  version: 1.0.0
servers: []
security: []
paths:
  /v1/accounts/{id}:
    get:
      summary: Get account by ID
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Account details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountResponse'
components:
  schemas:
    AccountResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        active:
          type: boolean
        customer_id:
          type: string
          format: uuid
        currency:
          type: string
        balance:
          type: number
        iban:
          type: string
        country_code:
          type: string
        country:
          type: string
        country_id:
          type: string
          format: uuid
        check_digits:
          type: string
        bban:
          type: string
        bank:
          type: string
        bic:
          type: string
        description:
          type: string
        metadata:
          type: object

````