JSON Response - Autoparse

For a list of domains, we offer a parameter that parses the data and returns structured JSON format instead of raw HTML. You enable the parsing simply by adding autoparse=true to your request.

circle-info

We recommend using our Structured Data Endpoints instead of the autoparse parameter.

You can find all available endpoints here.

Supported domains and pages:

Amazon
Ebay
Walmart
Google
Redfin

Product page data

Product page data

Product page data

Search page results

Single listing for sale

Search results

Search results

Category Pages

News results

Single listing for rent

Offers

Search Results

Job results

Listing search results

Reviews

Shopping data

Agent Details

Maps search results

  • API REQUEST

curl --request GET \
  --url 'https://api.scraperapi.com?api_key=API_KEY&autoparse=true&url=https://www.amazon.com/dp/B07V1PHM66'
  • ASYNC REQUEST

curl -X POST \
  -H "Content-Type: application/json" \
  -d '{
        "apiKey": "API_KEY",
        "url": "https://www.amazon.com/dp/B07V1PHM66",
        "apiParams": {
          "autoparse": "true"
        }
      }' \
  "https://async.scraperapi.com/jobs"
  • PROXY MODE

Output Format

In addition to parsing the data, you can choose between two different formats how you want to receive your structured response.

output_format=json

output_format=csv

Both options are available for the listed results above and can be used with the API in combination with autoparse=true parameter or with the Structured Data Endpoints.

Example JSON response

chevron-rightResponse.jsonhashtag

Example CSV response

Last updated