Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

amazon-asin-scraper

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amazon-asin-scraper - npm Package Compare versions

Comparing version 1.0.1 to 1.0.3

lib/scraper.js

6

index.js
// sample
const asinScraper = (asin) =>{
console.log('asin is ' + asin + '.');
const asinScraper = (asin, cb) =>{
res = 'Feature in progress...'
cb(res);
}
module.exports = asinScraper;
{
"name": "amazon-asin-scraper",
"version": "1.0.1",
"version": "1.0.3",
"description": "Amazon Scraper by ASIN ID",

@@ -11,10 +11,21 @@ "main": "index.js",

"type": "git",
"url": "\u0016https://github.com/yortrosal/amazon-asin-scraper.git"
"url": "https://github.com/yortrosal/amazon-asin-scraper.git"
},
"keywords": [
"amazon",
"scraper"
"Amazon Buybox Scraper",
"Amazon Review Scraper",
"Amazon MWS Custom Api",
"Amazon Price Api",
"Amazon Seller List",
"Amazon Offer Listing Scraper",
"Amazon Marketplace Web Service",
"Amazon Price Api",
"Amazon Crawler"
],
"author": "Jorge Rosal <yortrosal@gmail.com>",
"license": "ISC"
"license": "ISC",
"dependencies": {
"npm": "^6.4.1",
"osmosis": "^1.1.8"
}
}
# amazon-asin-scraper
Documentation will be added soon...
Making your amazon scraping job easier. This is going to be an alternative way to get the data you need that are not available on aws product and mws search api.
- Only Supports US marketplace as of this moment.
# Installation
```shell
npm install amazon-asin-scraper
```
## Usage
```js
const asinScraper = require('amazon-asin-scraper');
// using callback
let asin = someAsinIDhere;
asinScraper(asin, (result)=>{
// result below
// {
// asin :
// productTitle :
// customerReview :
// starRating :
// currentPrice :
// imageThumbnail :
// sellerList : [
// { sellerName :
// fulfulledBy :
// rating :
// primeBadge :
// offerPrice :
// shipping :
// offerListingId :
// },
// {},
// {}
// ]
// }
});
```
## Features
- Buybox Page Data Scraping
- Review Scraping
- Full Seller List Detail
- Product Detail Page Data Scraping
- Single proxy or multiple proxies and handles proxy failure
- Cookie jar and custom cookies/headers/user agent
- Set Retries on failed requests
## Documentation
For documentation and examples check out [https://not-yet.com](https://cjpcjp.jd)
## Donate
Please consider a donation if you depend on this project and makes your job a bit easier.
Your contribution allows me to spend more time improving features of this project.
[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=ZNPEGAPARUJSC)
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc