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

> List the shop offers Idealo compares for one product on a chosen national Idealo site: the shop name, id, logo, its Idealo shop rating and how many shop reviews that rests on, the offer's own product title, the price and the price including that shop's shipping with their currency, the stated delivery window and carrier, the accepted payment methods, whether the offer is a marketplace listing, and the link through to the shop.

**Price:** 10 credits per 20 results

**⚠️ Common errors:** 412: No such product on this national Idealo site, or it currently has no offers there



## OpenAPI

````yaml /openapi/price-comparison.json post /api/idealo/products/offers
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/offers:
    post:
      tags:
        - /idealo
      summary: /idealo/products/offers
      description: >-
        List the shop offers Idealo compares for one product on a chosen
        national Idealo site: the shop name, id, logo, its Idealo shop rating
        and how many shop reviews that rests on, the offer's own product title,
        the price and the price including that shop's shipping with their
        currency, the stated delivery window and carrier, the accepted payment
        methods, whether the offer is a marketplace listing, and the link
        through to the shop.


        **Price:** 10 credits per 20 results


        **⚠️ Common errors:** 412: No such product on this national Idealo site,
        or it currently has no offers there
      operationId: __api_idealo_products_offers_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IdealoProductsOffersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IdealoOffer'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IdealoProductsOffersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
        country:
          $ref: '#/components/schemas/IdealoCountry'
          default: de
        count:
          type: integer
          maximum: 200
          minimum: 1
      type: object
      required:
        - product
        - count
    IdealoOffer:
      properties:
        '@type':
          type: string
          default: IdealoOffer
        offer_key:
          type: string
        product_id:
          type: string
        shop_id:
          anyOf:
            - type: string
            - type: 'null'
        shop_name:
          anyOf:
            - type: string
            - type: 'null'
        shop_image:
          anyOf:
            - type: string
            - type: 'null'
        shop_rating:
          anyOf:
            - type: number
            - type: 'null'
        shop_review_count:
          anyOf:
            - type: integer
            - type: 'null'
        offer_title:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        total_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
        delivery:
          anyOf:
            - type: string
            - type: 'null'
        delivery_status:
          anyOf:
            - type: string
            - type: 'null'
        delivery_providers:
          items:
            type: string
          type: array
          default: []
        payment_methods:
          items:
            type: string
          type: array
          default: []
        is_marketplace:
          type: boolean
          default: false
        marketplace_merchant:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - offer_key
        - product_id
        - currency
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IdealoCountry:
      type: string
      enum:
        - de
        - at
        - gb
        - fr
        - it
        - es
    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

````