> ## 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 all accounts



## OpenAPI

````yaml get /v1/accounts
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:
    get:
      summary: Get all accounts
      responses:
        '200':
          description: List of accounts
          content:
            application/json:
              schema:
                type: array
                items:
                  $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

````