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

> Get a list of regions available for proxy services in the specified country.



## OpenAPI

````yaml get /go-api/v1/proxy/regions
openapi: 3.0.1
info:
  title: GoProxy API Documentation
  description: ''
  version: 1.0.0
servers: []
security: []
tags: []
paths:
  /go-api/v1/proxy/regions:
    get:
      tags: []
      summary: Check Available Regions
      description: >-
        Get a list of regions available for proxy services in the specified
        country.
      parameters:
        - name: countryCode
          in: query
          description: >-
            The two-letter ISO country code, following the ISO 3166-1 alpha-2
            standard.
          required: true
          schema:
            type: string
            title: countryCode
        - 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/GetProxyRegionsResponseModel'
          headers: {}
      deprecated: false
      security: []
components:
  schemas:
    GetProxyRegionsResponseModel:
      properties:
        regions:
          items:
            $ref: '#/components/schemas/ProxyRegionsResponseModel'
          type: array
          title: regions
      type: object
      required:
        - regions
      title: GetProxyRegionsResponseModel
    ProxyRegionsResponseModel:
      properties:
        regionName:
          type: string
          title: regionName
          description: The name of the region within the specified country.
        countryName:
          type: string
          title: countryName
          description: >-
            The full name of the country which the region belongs, as per the
            common naming convention
      type: object
      required:
        - regionName
        - countryName
      title: ProxyRegionsResponseModel

````