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

# Get Country by Code

> Retrieves the details of a specific country identified by `CountryCode`.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/countries/{CountryCode}
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/countries/{CountryCode}:
    get:
      tags:
        - Lookups
      summary: Get Country by Code
      description: Retrieves the details of a specific country identified by `CountryCode`.
      operationId: get-country-by-code
      parameters:
        - name: CountryCode
          in: path
          required: true
          description: The unique code of the country to be retrieved.
          schema:
            type: string
      responses:
        '200':
          description: The details of the country associated with the specified code.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CountryCodes'
components:
  schemas:
    CountryCodes:
      type: object
      description: >-
        Represents detailed information about a country, including its
        identifiers, name, and dialing code.
      properties:
        CountryID:
          type: integer
          format: int32
          nullable: true
          description: The unique identifier of the country.
        CountryCode:
          type: string
          nullable: true
          description: >-
            The ISO 3166-1 alpha-2 code of the country (e.g., "US" for the
            United States).
        CountryName:
          type: string
          nullable: true
          description: The full name of the country.
        CountryDialingCode:
          type: integer
          format: int32
          nullable: true
          description: >-
            The international dialing code for the country (e.g., 1 for the
            United States).
        CountryReference:
          type: integer
          format: int32
          nullable: true
          description: An internal reference number associated with the country.
        CountryISONumericCode:
          type: integer
          format: int32
          nullable: true
          description: >-
            The ISO 3166-1 numeric code of the country (e.g., 840 for the United
            States).
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````