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



## OpenAPI

````yaml get /v1/countries
openapi: 3.0.0
info:
  title: Corebanq - Countries API
  description: API endpoints for country data management
  version: 1.0.0
servers: []
security: []
paths:
  /v1/countries:
    get:
      summary: Get all countries
      responses:
        '200':
          description: List of countries
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CountryResponse'
components:
  schemas:
    CountryResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        iso_alpha2:
          type: string
        iso_alpha3:
          type: string
        iso_numeric:
          type: string
        iban_length:
          type: integer
        currency_code:
          type: string
        active:
          type: boolean
        metadata:
          type: object
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time

````