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

# /idealo/products

> Get an Idealo product by product id (or product URL) on a chosen national Idealo site: name, brand, category and top-level category, category id, the current lowest offer price and lowest price including shipping with their currency, delivery-time bucket, online availability, energy class, product page URL and images, plus the price per reference unit for products sold by volume or weight and the EU tyre label for tyres.

**Price:** 10 credits

**⚠️ Common errors:** 412: Product not found (well-formed id that this national Idealo site does not list)



## OpenAPI

````yaml /openapi/price-comparison.json post /api/idealo/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/idealo/products:
    post:
      tags:
        - /idealo
      summary: /idealo/products
      description: >-
        Get an Idealo product by product id (or product URL) on a chosen
        national Idealo site: name, brand, category and top-level category,
        category id, the current lowest offer price and lowest price including
        shipping with their currency, delivery-time bucket, online availability,
        energy class, product page URL and images, plus the price per reference
        unit for products sold by volume or weight and the EU tyre label for
        tyres.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Product not found (well-formed id that this
        national Idealo site does not list)
      operationId: __api_idealo_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IdealoProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IdealoProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IdealoProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        country:
          $ref: '#/components/schemas/IdealoCountry'
          default: de
      type: object
      required:
        - product
    IdealoProduct:
      properties:
        '@type':
          type: string
          default: IdealoProduct
        id:
          type: string
        site_id:
          type: string
        country:
          type: string
        currency:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        main_category:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        total_price:
          anyOf:
            - type: number
            - type: 'null'
        delivery_status:
          anyOf:
            - type: string
            - type: 'null'
        is_available_online:
          anyOf:
            - type: boolean
            - type: 'null'
        is_main_product:
          anyOf:
            - type: boolean
            - type: 'null'
        energy_class:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        base_price:
          anyOf:
            - $ref: '#/components/schemas/IdealoProductBasePrice'
            - type: 'null'
        tyre_label:
          anyOf:
            - $ref: '#/components/schemas/IdealoProductTyreLabel'
            - type: 'null'
      type: object
      required:
        - id
        - site_id
        - country
        - currency
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IdealoCountry:
      type: string
      enum:
        - de
        - at
        - gb
        - fr
        - it
        - es
    IdealoProductBasePrice:
      properties:
        '@type':
          type: string
          default: IdealoProductBasePrice
        amount:
          anyOf:
            - type: number
            - type: 'null'
        unit:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        total_price:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    IdealoProductTyreLabel:
      properties:
        '@type':
          type: string
          default: IdealoProductTyreLabel
        fuel_efficiency_class:
          anyOf:
            - type: string
            - type: 'null'
        wet_grip_class:
          anyOf:
            - type: string
            - type: 'null'
        rolling_noise_class:
          anyOf:
            - type: string
            - type: 'null'
        rolling_noise_db:
          anyOf:
            - type: integer
            - type: 'null'
        has_ice_grip:
          anyOf:
            - type: boolean
            - type: 'null'
        has_snow_grip:
          anyOf:
            - type: boolean
            - 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
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````