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

# Catalog Countries

> Geo the given category can actually be bought in, straight from the
live provider catalog (cached ~24h upstream).



## OpenAPI

````yaml /api-reference/proxy.json get /v1/proxy/catalog/{category}/countries
openapi: 3.1.0
info:
  title: Lumi Proxy API
  version: 1.1.0
  description: >-
    Публичный REST API прокси Lumi. Ключ привязан к одному аккаунту и делает то
    же, что клиент делает в боте.


    Авторизация: `Authorization: Bearer <ключ>`. Денежные запросы дополнительно
    требуют заголовок `Idempotency-Key`.
servers:
  - url: https://api.lumiweb.cc/proxy
    description: production
security:
  - bearerAuth: []
paths:
  /v1/proxy/catalog/{category}/countries:
    get:
      tags:
        - proxy
      summary: Catalog Countries
      description: |-
        Geo the given category can actually be bought in, straight from the
        live provider catalog (cached ~24h upstream).
      operationId: catalog_countries
      parameters:
        - name: category
          in: path
          required: true
          schema:
            type: string
            title: Category
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CountriesOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CountriesOut:
      properties:
        category:
          type: string
          title: Category
        countries:
          items:
            $ref: '#/components/schemas/CountryOut'
          type: array
          title: Countries
      type: object
      required:
        - category
        - countries
      title: CountriesOut
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CountryOut:
      properties:
        iso:
          anyOf:
            - type: string
            - type: 'null'
          title: Iso
        name:
          type: string
          title: Name
      type: object
      required:
        - name
      title: CountryOut
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Ключ вида lumi_proxy_… Выдаётся оператором.

````