Skip to main content
POST
/
api
/
idealo
/
products
/
price-history
/idealo/products/price-history
curl --request POST \
  --url https://api.anysite.io/api/idealo/products/price-history \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300,
  "period": "3M"
}
'
[
  {
    "id": "<string>",
    "period": "<string>",
    "@type": "@idealo_price_history",
    "currency": "EUR",
    "start_date": "<string>",
    "avg_price": 123,
    "lowest_price": 123,
    "lowest_price_days": 123,
    "highest_price": 123,
    "highest_price_days": 123,
    "points": []
  }
]

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
period
enum<string>
default:3M

Time window of the price history

Available options:
3M,
6M,
1Y

Response

Successful Response

id
string
required
period
string
required
@type
string
default:@idealo_price_history
currency
string
default:EUR
start_date
string | null
avg_price
number | null
lowest_price
number | null
lowest_price_days
integer | null
highest_price
number | null
highest_price_days
integer | null
points
IdealoPriceHistoryPoint · object[]