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

# /gog/products/prices

> Get GOG product price across one or more store countries

**Price:** 1 credit per 1 results

**⚠️ Common errors:** 412: Product not found



## OpenAPI

````yaml /openapi/games.json post /api/gog/products/prices
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/gog/products/prices:
    post:
      tags:
        - /gog
      summary: /gog/products/prices
      description: |-
        Get GOG product price across one or more store countries

        **Price:** 1 credit per 1 results

        **⚠️ Common errors:** 412: Product not found
      operationId: __api_gog_products_prices_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GogProductPricesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GogRegionalPrice'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GogProductPricesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        countries:
          items:
            $ref: '#/components/schemas/GogCountry'
          type: array
          minItems: 1
      type: object
      required:
        - product
        - countries
    GogRegionalPrice:
      properties:
        '@type':
          type: string
          default: GogRegionalPrice
        country:
          type: string
        currency:
          anyOf:
            - type: string
            - type: 'null'
        base_price:
          anyOf:
            - type: number
            - type: 'null'
        final_price:
          anyOf:
            - type: number
            - type: 'null'
        discount_percent:
          anyOf:
            - type: integer
            - type: 'null'
        bonus_wallet_funds:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - country
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    GogCountry:
      type: string
      enum:
        - US
        - GB
        - CA
        - AU
        - DE
        - FR
        - IT
        - ES
        - NL
        - BE
        - AT
        - CH
        - SE
        - 'NO'
        - DK
        - FI
        - IE
        - PT
        - PL
        - CZ
        - HU
        - RO
        - GR
        - UA
        - RU
        - TR
        - BR
        - MX
        - AR
        - CL
        - CO
        - JP
        - KR
        - CN
        - TW
        - HK
        - SG
        - ID
        - TH
        - VN
        - PH
        - MY
        - IN
        - AE
        - SA
        - IL
        - ZA
        - NZ
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````