Skip to main content
POST
/
api
/
idealo
/
products
/
offers
/idealo/products/offers
curl --request POST \
  --url https://api.anysite.io/api/idealo/products/offers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "@idealo_offer",
    "offer_key": "<string>",
    "shop_name": "<string>",
    "shop_id": "<string>",
    "shop_image": "<string>",
    "shop_rating": 123,
    "shop_review_count": 123,
    "title": "<string>",
    "price": 123,
    "total_price": 123,
    "payment_methods": [],
    "delivery": "<string>",
    "is_marketplace": false,
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Idealo product id or a product URL containing it

Minimum string length: 1
Examples:

"204374464"

"https://www.idealo.de/preisvergleich/OffersOfProduct/204374464_-portasplit-3-5-kw-midea.html"

count
integer
required

Max number of shop offers to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@idealo_offer
offer_key
string | null
shop_name
string | null
shop_id
string | null
shop_image
string | null
shop_rating
number | null
shop_review_count
integer | null
title
string | null
price
number | null
total_price
number | null
payment_methods
string[]
delivery
string | null
is_marketplace
boolean
default:false
url
string | null