> ## 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 country by ID



## OpenAPI

````yaml get /v1/countries/{id}
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/{id}:
    get:
      summary: Get country by ID
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Country details
          content:
            application/json:
              schema:
                $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

````