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

# /cdiscount/products

> Get full Cdiscount product details by product id (sku) or product URL: title, brand, EAN, price and tax breakdown, condition, availability, images, description, technical specifications, variants, seller, offer counts and price range across sellers, energy grade and related searches.

**Price:** 5 credits

**⚠️ Common errors:** 412: Product not found (well-formed but nonexistent sku)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/cdiscount/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/cdiscount/products:
    post:
      tags:
        - /cdiscount
      summary: /cdiscount/products
      description: >-
        Get full Cdiscount product details by product id (sku) or product URL:
        title, brand, EAN, price and tax breakdown, condition, availability,
        images, description, technical specifications, variants, seller, offer
        counts and price range across sellers, energy grade and related
        searches.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Product not found (well-formed but
        nonexistent sku)
      operationId: __api_cdiscount_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CdiscountProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CdiscountProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CdiscountProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    CdiscountProduct:
      properties:
        '@type':
          type: string
          default: CdiscountProduct
        id:
          type: string
        offer_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        ean:
          anyOf:
            - type: string
            - type: 'null'
        manufacturer_model:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        short_description:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_without_vat:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: EUR
        taxes:
          items:
            $ref: '#/components/schemas/CdiscountProductTax'
          type: array
          default: []
        condition:
          anyOf:
            - type: string
            - type: 'null'
        is_available:
          anyOf:
            - type: boolean
            - type: 'null'
        is_free_shipping:
          anyOf:
            - type: boolean
            - type: 'null'
        free_shipping_label:
          anyOf:
            - type: string
            - type: 'null'
        seller_name:
          anyOf:
            - type: string
            - type: 'null'
        seller_id:
          anyOf:
            - type: string
            - type: 'null'
        seller_sales_count:
          anyOf:
            - type: integer
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        category_path:
          anyOf:
            - type: string
            - type: 'null'
        department_id:
          anyOf:
            - type: string
            - type: 'null'
        offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        new_offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        used_offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        lowest_new_price:
          anyOf:
            - type: number
            - type: 'null'
        lowest_used_price:
          anyOf:
            - type: number
            - type: 'null'
        energy_grade:
          anyOf:
            - type: string
            - type: 'null'
        repairability_index:
          anyOf:
            - type: number
            - type: 'null'
        is_trade_in_eligible:
          anyOf:
            - type: boolean
            - type: 'null'
        related_searches:
          items:
            type: string
          type: array
          default: []
        bullet_points:
          items:
            type: string
          type: array
          default: []
        specifications:
          items:
            $ref: '#/components/schemas/CdiscountProductSpec'
          type: array
          default: []
        variants:
          items:
            $ref: '#/components/schemas/CdiscountProductVariant'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CdiscountProductTax:
      properties:
        '@type':
          type: string
          default: CdiscountProductTax
        type:
          type: string
        value:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - type
    CdiscountProductSpec:
      properties:
        '@type':
          type: string
          default: CdiscountProductSpec
        group:
          type: string
        name:
          type: string
        value:
          type: string
      type: object
      required:
        - group
        - name
        - value
    CdiscountProductVariant:
      properties:
        '@type':
          type: string
          default: CdiscountProductVariant
        key:
          type: string
        sku:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - key
        - sku
    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

````