Skip to main content
POST
/
api
/
idealo
/
products
/idealo/products
curl --request POST \
  --url https://api.anysite.io/api/idealo/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@idealo_product",
    "url": "<string>",
    "name": "<string>",
    "brand": "<string>",
    "description": "<string>",
    "ean": "<string>",
    "image": "<string>",
    "images": [],
    "category_id": "<string>",
    "rating": 123,
    "review_count": 123,
    "low_price": 123,
    "high_price": 123,
    "offer_count": 123,
    "currency": "<string>",
    "availability": "<string>",
    "breadcrumbs": [],
    "specs": {},
    "pros": [],
    "cons": [],
    "faq": [],
    "variants": [],
    "international_prices": []
  }
]

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"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@idealo_product
url
string | null
name
string | null
brand
string | null
description
string | null
ean
string | null
image
string | null
images
string[]
category_id
string | null
rating
number | null
review_count
integer | null
low_price
number | null
high_price
number | null
offer_count
integer | null
currency
string | null
availability
string | null
condition
enum<string> | null
Available options:
New,
Used,
Refurbished,
Damaged
breadcrumbs
string[]
specs
Specs · object
pros
string[]
cons
string[]
faq
IdealoFaqItem · object[]
variants
IdealoProductVariant · object[]
international_prices
IdealoInternationalPrice · object[]