Amazon Data Scraper

FREEMIUM
By Technologie Dev | Updated vor 2 Monaten | eCommerce
Health Check

N/A

README

Amazon Product Identifier
how to get id product in url
1.step:
example of url:
https://www.amazon.com/Dr-Martens-Gaucho-Crazy-Horse/dp/B001N1J54M/ref=sr_1_3?crid=90YR5PSY0JPC&dchild=1&keywords=offers+of+the+day&qid=1635847949&sprefix=offer%2Caps%2C919&sr=8-3

2.step:
Now check in url a path like "…/dp/ B001N1J54M/…
where is product id: ofter id product amazon come after /dp/{productid}
is mean product id is B001N1J54M

example HTTP/1.1

GET /products/B001N1J54M?api_key=b1d36728ace98e890f2177caf343948d
X-Rapidapi-Host: amazon-data-scraper39.p.rapidapi.com
X-Rapidapi-Key: 7377f41c7cmsh1d1972bdef7086ep1151aejsn40c8de99f556
Host: amazon-data-scraper39.p.rapidapi.com

example with javascript

fetch(“https://amazon-data-scraper39.p.rapidapi.com/products/B099VMT8VZ?api_key=b1d36728ace98e890f2177caf343948d”, {
“method”: “GET”,
“headers”: {
“x-rapidapi-host”: “amazon-data-scraper39.p.rapidapi.com”,
“x-rapidapi-key”: “7377f41c7cmsh1d1972bdef7086ep1151aejsn40c8de99f556”
}
})
.then(response => {
console.log(response);
})
.catch(err => {
console.error(err);
});

Followers: 1
Resources:
Product Website
API Creator:
Rapid account: Technologie Dev
Technologie Dev
mbavazijoshua-FBlK2-OZK5X
Log In to Rate API
Rating: 5 - Votes: 1