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

# Check Available Countries

> Get a list of countries where proxy servers are available for use.



## OpenAPI

````yaml get /go-api/v1/proxy/countries
openapi: 3.0.1
info:
  title: GoProxy API Documentation
  description: ''
  version: 1.0.0
servers: []
security: []
tags: []
paths:
  /go-api/v1/proxy/countries:
    get:
      tags: []
      summary: Check Available Countries
      description: Get a list of countries where proxy servers are available for use.
      parameters:
        - name: apiKey
          in: header
          description: API key used for authentication.
          required: true
          example: ''
          schema:
            type: string
            title: apiKey
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetProxyCountriesResponseModel'
          headers: {}
      deprecated: false
      security: []
components:
  schemas:
    GetProxyCountriesResponseModel:
      properties:
        countries:
          items:
            $ref: '#/components/schemas/ProxyCountriesResponseModel'
          type: array
          title: countries
      type: object
      required:
        - countries
      title: GetProxyCountriesResponseModel
    ProxyCountriesResponseModel:
      properties:
        countryCode:
          type: string
          title: countryCode
          description: >-
            The two-letter ISO country code, following the ISO 3166-1 alpha-2
            standard.
        countryName:
          type: string
          title: countryName
          description: The full name of the country, as per the common naming convention.
      type: object
      required:
        - countryCode
        - countryName
      title: ProxyCountriesResponseModel

````