Migrating from the Universal Scraper API to Amazon Scraper APIs
Switching from the Universal Scraper API to the dedicated Amazon Scraper APIs streamlines extraction and minimizes development effort.
This guide provides a step-by-step migration process:
- First, we present an end-to-end script using the Universal Scraper API.
- Then, we demonstrate how to transition to the dedicated Scraper APIs for improved accuracy and ease of use.
Follow this guide to implement the new API in just a few steps.
Initial Method via the Universal Scraper API
Using the Universal Scraper API, you’d typically extract product URLs from a product listing, visit each page via the URL, and save individual product data into a CSV file:
Parsing Logic and Extracting Product Data
Once the HTML content is obtained, the next step is to parse the webpage and extract the product information you need: title, price, link, and availability.
Store the data in a CSV file
Once all data is collected and structured, the following function saves the data into a CSV file:
Here’s Everything Together
Here’s the complete Python script combining all the logic we explained above.
Transition to the Amazon Scraper API
The Scraper API offers a more streamlined experience than the Universal Scraper API. It eliminates the parsing stage and instantly delivers ready-to-use data at your fingertips.
You can extract product data from Amazon using the following Scraper APIs:
- Amazon Product Discovery API: Retrieves a list of products based on a search term. Here’s the endpoint:
https://ecommerce.api.zenrows.com/v1/targets/amazon/discovery/<search_term>
To implement your Amazon scraper, simply provide your ZenRows API key as a request parameter and append your search term to the API endpoint.
- Product Information API: Fetches detailed information from individual product pages. See the endpoint below:
https://ecommerce.api.zenrows.com/v1/targets/amazon/products/<ASIN>
Some product details (e.g., Availability data) are only available on individual product pages and won’t be returned in a product listing. To retrieve this information, you can access each product page using the ASIN extracted from the Product Discovery endpoint.
To streamline this process, the Amazon Scraper APIs allow you to enhance the previous Universal Scraper API method with the following steps:
- Retrieve Amazon search results using the Product Discovery endpoint.
- Extract each product’s ASIN from the JSON response.
- Use the ASIN to fetch product details (e.g., Availability) from the Product Information endpoint.
- Update the initial search results with each product’s availability data obtained from the Product Information endpoint.
Here’s the updated code using the Amazon Scraper APIs:
Store the data
You can store the combined data in a CSV or dedicated database. The code below writes each product detail to a new CSV row and stores the file as products.csv
:
Here’s the complete code:
You’ll get an output similar to the following:
Congratulations! 🎉 You’ve successfully upgraded your scraper to a more reliable, handier solution that precisely fetches your needed data. No more dealing with endless runtime failures from missing elements!
The Scraper APIs also offer even better scalability. For example, with the pagination details returned by the Amazon Discovery API, you can easily follow and scrape subsequent pages.
Conclusion
With only a few code changes, you’ve optimized your scraping script with the new Scraper APIs for a smoother and more efficient experience. No more time-consuming pagination challenges and parsing issues. Now, you can confidently collect data at scale while the ZenRows Scraper APIs handle the heavy lifting.
Was this page helpful?