# Raw HTML alongside structured fields in Amazon responses > Source: https://scrape.do/documentation/changelog/2026-02-09-amazon-api-html/ 2026-02-09 ยท improvement Two changes to the Amazon Scraper API that lower request cost and unlock custom parsing. ## include_html=true Every structured endpoint (`/plugin/amazon/pdp`, `/offer-listing`, `/search`) now accepts an `include_html` parameter. When set to `true`, the response carries the raw page HTML in the `html` field alongside the parsed JSON. This is useful when: - You need a field Scrape.do doesn't surface in the structured response (yet). - You're auditing parser output against the source page. - You want a single round-trip for both your own parser and the structured fallback. ``` GET https://api.scrape.do/plugin/amazon/pdp ?token=YOUR_TOKEN &url=https://www.amazon.com/dp/B0XXXXXXX &include_html=true ``` ## super no longer required The `super=true` parameter is no longer required on Amazon requests. The endpoint now handles the residential/mobile routing automatically when it's needed, instead of asking you to opt in. Existing requests that pass `super=true` keep working unchanged. See the [Amazon Scraper API documentation](/documentation/amazon-scraper-api) for the updated request and response shape.