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

aws-price

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-price

Amazon product API price lookup simplified

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
201
increased by12.92%
Maintainers
1
Weekly downloads
 
Created
Source

aws-price

Introduction

This module is a simple chainable wrapper around node-apac, primarily used for retrieving prices from amazon using a given ASIN identifier

Dependencies

Example

var price = require('aws-price');

price('<asin>')
  .id('<aws id>')
  .secret('<aws secret>')
  .associate('<amazon associate id>')
  .country('us')
  .done(function (err, res) {});

It is also possible to look for products via keywords or EAN

price({ keywords: 'Teddy Bear' })
...

// Up to 10 EANs
price({ ean: '0123456789123,1234567890123' })
...

Load extra offers which could show used or refurbished objects. This adds an offers field to the response.

price('<asin>')
  ...
  .loadOffers()
  ...

FAQs

Package last updated on 21 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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