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

# Get region data by country



## OpenAPI

````yaml /openapi.json get /api/data/region/{country}
openapi: 3.1.0
info:
  title: AnyIP.io API documentation
  description: >-
    The anyIP REST API allows you to programmatically manage proxy accounts,
    monitor traffic, and access geographic data. Authenticate using your API
    key.
  version: 1.0.0
servers:
  - url: https://dashboard.anyip.io
    description: anyIP Production API
security:
  - apiHeader: []
tags: []
paths:
  /api/data/region/{country}:
    get:
      tags:
        - Data
      summary: Get region data by country
      operationId: getRegion
      parameters:
        - name: country
          in: path
          description: Country code
          required: true
          deprecated: false
          schema:
            type: string
            pattern: ^[A-Z]{2}$
          example: US
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    name:
                      type: string
                    value:
                      type: string
        '404':
          description: Data not found
components:
  securitySchemes:
    apiHeader:
      type: apiKey
      description: Value for the api-key header parameter.
      name: api-key
      in: header

````