With our Structured Data Endpoints, you’ll be able to:
No credit card required.
Join the 10,000+ companies and developers using ScraperAPI
Amazon is a product data goldmine, and it’s just one API call away with ScraperAPI.
https://api.scraperapi.com/structured/amazon/product
Need granular product details? This endpoint will turn any Amazon product page into readable JSON data.
import requests
payload = {
'api_key': 'YOUR_API_KEY',
'asin': 'B07G4J7TY5',
'country': 'us'
}
response = requests.get(
'https://api.scraperapi.com/structured/amazon/product', params=payload)
print(response.text)
https://api.scraperapi.com/structured/amazon/offers
Product data from Amazon offers? We got you covered there too!
import requests
payload = {
'api_key': 'YOUR_API_KEY',
'asin': 'B08XXGSLPK',
'country': 'us'
}
response = requests.get(
'https://api.scraperapi.com/structured/amazon/offers', params=payload)
print(response.text)
https://api.scraperapi.com/structured/amazon/review
Reviews are critical to understand how buyers feel about specific products, so don’t forget to collect them.
import requests
payload = {
'api_key': 'YOUR_API_KEY',
'asin': 'B00GD0M7BG',
'country': 'us'
}
response = requests.get(
'https://api.scraperapi.com/structured/amazon/review', params=payload)
print(response.text)
https://api.scraperapi.com/structured/amazon/search
Discover what products are ranking for any query you want.
import requests
payload = {
'api_key': 'YOUR_API_KEY',
'query': 'softbox lighting',
'country': 'us'
}
response = requests.get(
'https://api.scraperapi.com/structured/amazon/search', params=payload)
print(response.text)
No credit card required.
Supercharge your business and marketing decisions with data from the biggest search engine in the world.
https://api.scraperapi.com/structured/google/search
Extract every little detail from any search engine result page (SERP) in JSON format.
import requests
payload = {
'api_key': 'YOUR_API_KEY',
'country': 'us',
'query': 'brand monitoring'
}
response = requests.get(
'https://api.scraperapi.com/structured/google/search', params=payload)
print(response.text)
https://api.scraperapi.com/structured/google/news
Gather localized news data from Google with a simple API call.
import requests
payload = {
'api_key': 'YOUR_API_KEY',
'country': 'us',
'query': 'xbox game pass'
}
response = requests.get(
'https://api.scraperapi.com/structured/google/news', params=payload)
print(response.text)
https://api.scraperapi.com/structured/google/jobs
Over 100k jobs are listed in Google every day. Don’t miss the opportunity and start scraping!
import requests
payload = {
'api_key': 'YOUR_API_KEY',
'country': 'us',
'query': 'data analyst'
}
response = requests.get(
'https://api.scraperapi.com/structured/google/jobs', params=payload)
print(response.text)
https://api.scraperapi.com/structured/google/shopping
Every purchase starts with a search. Discover the products that rank the highest in Google Shopping pages.
import requests
payload = {
'api_key': 'YOUR_API_KEY',
'country': 'us',
'query': 'therapy hand balls'
}
response = requests.get(
'https://api.scraperapi.com/structured/google/shopping', params=payload)
print(response.text)
No credit card required.
Send your request using our Structured Data Endpoints, and ScraperAPI will transform the website into readable and predictable structured JSON data.
Receive only the information you care about instead of hundreds of unnecessary HTML tags and scripts.
We identify and handle any changes on your target sites, ensuring you always get the most accurate and consistent data you need. No more building and maintaining fickle parsers!
Try ScraperAPI’s Structured Data Endpoints with 5000 Free API Credits!
No credit card required