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

> Get GOG product details by numeric product ID, store slug, or store URL

**Price:** 5 credits

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



## OpenAPI

````yaml /openapi/games.json post /api/gog/products
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:
    post:
      tags:
        - /gog
      summary: /gog/products
      description: |-
        Get GOG product details by numeric product ID, store slug, or store URL

        **Price:** 5 credits

        **⚠️ Common errors:** 412: Product not found
      operationId: __api_gog_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GogProductPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GogProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    GogProductPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        country:
          $ref: '#/components/schemas/GogCountry'
          default: US
        locale:
          $ref: '#/components/schemas/GogLocale'
          default: en-US
      type: object
      required:
        - product
    GogProduct:
      properties:
        '@type':
          type: string
          default: GogProduct
        id:
          type: integer
        game_title:
          type: string
        slug:
          anyOf:
            - type: string
            - type: 'null'
        product_type:
          anyOf:
            - type: string
            - type: 'null'
        release_status:
          anyOf:
            - type: string
            - type: 'null'
        global_release_date:
          anyOf:
            - type: string
            - type: 'null'
        gog_release_date:
          anyOf:
            - type: string
            - type: 'null'
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        in_development:
          type: boolean
          default: false
        is_preorder:
          type: boolean
          default: false
        is_installable:
          type: boolean
          default: false
        is_available_for_sale:
          type: boolean
          default: false
        description_lead:
          anyOf:
            - type: string
            - type: 'null'
        features_description:
          anyOf:
            - type: string
            - type: 'null'
        additional_requirements:
          anyOf:
            - type: string
            - type: 'null'
        copyrights:
          anyOf:
            - type: string
            - type: 'null'
        size:
          anyOf:
            - type: integer
            - type: 'null'
        developers:
          items:
            type: string
          type: array
          default: []
        publishers:
          items:
            type: string
          type: array
          default: []
        genres:
          items:
            $ref: '#/components/schemas/GogNamedSlug'
          type: array
          default: []
        tags:
          items:
            $ref: '#/components/schemas/GogNamedSlug'
          type: array
          default: []
        features:
          items:
            $ref: '#/components/schemas/GogNamedSlug'
          type: array
          default: []
        operating_systems:
          items:
            type: string
          type: array
          default: []
        system_requirements:
          items:
            $ref: '#/components/schemas/GogSystemRequirements'
          type: array
          default: []
        localizations:
          items:
            $ref: '#/components/schemas/GogLocalization'
          type: array
          default: []
        age_ratings:
          items:
            $ref: '#/components/schemas/GogAgeRating'
          type: array
          default: []
        videos:
          items:
            $ref: '#/components/schemas/GogVideo'
          type: array
          default: []
        bonuses:
          items:
            $ref: '#/components/schemas/GogBonus'
          type: array
          default: []
        editions:
          items:
            $ref: '#/components/schemas/GogEdition'
          type: array
          default: []
        screenshots:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        logo:
          anyOf:
            - type: string
            - type: 'null'
        banner:
          anyOf:
            - type: string
            - type: 'null'
        icon:
          anyOf:
            - type: string
            - type: 'null'
        series:
          anyOf:
            - $ref: '#/components/schemas/GogSeries'
            - type: 'null'
        dlc_ids:
          items:
            type: integer
          type: array
          default: []
        related_product_ids:
          items:
            type: integer
          type: array
          default: []
        price:
          anyOf:
            - $ref: '#/components/schemas/GogPrice'
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        store_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - game_title
    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
    GogLocale:
      type: string
      enum:
        - en-US
        - en-GB
        - de-DE
        - fr-FR
        - it-IT
        - es-ES
        - pt-BR
        - pl-PL
        - ru-RU
        - cs-CZ
        - hu-HU
        - ja-JP
        - ko-KR
        - zh-Hans
        - zh-Hant
    GogNamedSlug:
      properties:
        '@type':
          type: string
          default: GogNamedSlug
        name:
          type: string
        slug:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    GogSystemRequirements:
      properties:
        '@type':
          type: string
          default: GogSystemRequirements
        operating_system:
          type: string
        versions:
          anyOf:
            - type: string
            - type: 'null'
        minimum:
          items:
            $ref: '#/components/schemas/GogRequirementLine'
          type: array
          default: []
        recommended:
          items:
            $ref: '#/components/schemas/GogRequirementLine'
          type: array
          default: []
      type: object
      required:
        - operating_system
    GogLocalization:
      properties:
        '@type':
          type: string
          default: GogLocalization
        language_code:
          type: string
        language_name:
          anyOf:
            - type: string
            - type: 'null'
        in_audio:
          type: boolean
          default: false
        in_text:
          type: boolean
          default: false
      type: object
      required:
        - language_code
    GogAgeRating:
      properties:
        '@type':
          type: string
          default: GogAgeRating
        board:
          type: string
        category:
          anyOf:
            - type: string
            - type: 'null'
        age_rating:
          anyOf:
            - type: integer
            - type: 'null'
        content_descriptors:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - board
    GogVideo:
      properties:
        '@type':
          type: string
          default: GogVideo
        provider:
          anyOf:
            - type: string
            - type: 'null'
        video_id:
          anyOf:
            - type: string
            - type: 'null'
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    GogBonus:
      properties:
        '@type':
          type: string
          default: GogBonus
        name:
          type: string
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_slug:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    GogEdition:
      properties:
        '@type':
          type: string
          default: GogEdition
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
        bonuses:
          items:
            $ref: '#/components/schemas/GogBonus'
          type: array
          default: []
      type: object
      required:
        - name
    GogSeries:
      properties:
        '@type':
          type: string
          default: GogSeries
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          type: string
      type: object
      required:
        - name
    GogPrice:
      properties:
        '@type':
          type: string
          default: GogPrice
        base_price:
          anyOf:
            - type: number
            - type: 'null'
        final_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        discount_percent:
          anyOf:
            - type: integer
            - type: 'null'
        bonus_wallet_funds:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    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
    GogRequirementLine:
      properties:
        '@type':
          type: string
          default: GogRequirementLine
        key:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - key
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````