Vacuum is a light-weight Ruby wrapper to Amazon Product Advertising API 5.0.
The Product Advertising API provides programmatic access to search and get detailed product information on the Amazon marketplaces. Users can get detailed information about products such as product title, description, image urls, prices, similar products, prime eligibility, offers and many other details that can be used to monetise their websites by giving recommendations and promoting the products.
You need to register as an affiliate on each individual marketplace to access its API.
Vacuum follows the nomenclature of the Product Advertising API. The examples below are based on examples in the Amazon docs.
Create a request with your marketplace credentials.
request = Vacuum.new(marketplace: 'US',
access_key: '<ACCESS_KEY>',
secret_key: '<SECRET_KEY>',
partner_tag: '<PARTNER_TAG>')Vacuum uses HTTPI under the hood. You can swap the HTTP library it uses if you prefer an alternative for speed or introspection.
HTTPI.adapter = :httpGiven a BrowseNodeId, the GetBrowseNodes operation returns details about the specified browse node like name, children and ancestors depending on the resources specified in the request. The names and browse node IDs of the children and ancestor browse nodes are also returned. GetBrowseNodes enables you to traverse the browse node hierarchy to find a browse node.
request.get_browse_nodes(
browse_node_ids: ['283155', '3040'],
resources: ['BrowseNodes.Ancestor', 'BrowseNodes.Children']
)Given an Item identifier, the GetItems operation returns the item attributes, based on the resources specified in the request.
request.get_items(
item_ids: ['B0199980K4', 'B000HZD168', 'B01180YUXS', 'B00BKQTA4A'],
resources: ['Images.Primary.Small', 'ItemInfo.Title', 'ItemInfo.Features',
'Offers.Summaries.HighestPrice' , 'ParentASIN']
)Given an ASIN, the GetVariations operation returns a set of items that are the same product, but differ according to a consistent theme, for example size and color. These items which differ according to a consistent theme are called variations. A variation is a child ASIN. The parent ASIN is an abstraction of the children items. For example, a shirt is a parent ASIN and parent ASINs cannot be sold. A child ASIN would be a blue shirt, size 16, sold by MyApparelStore. This child ASIN is one of potentially many variations. The ways in which variations differ are called dimensions.
request.get_variations(
asin: 'B00422MCUS',
resources: ['ItemInfo.Title', 'VariationSummary.Price.HighestPrice',
'VariationSummary.Price.LowestPrice',
'VariationSummary.VariationDimension']
)The SearchItems operation searches for items on Amazon based on a search query. The Amazon Product Advertising API returns up to ten items per search request.
request.search_items(keywords: 'harry potter')The quick and dirty way to consume a response is to parse into a Ruby hash:
response.to_hYou can also #dig into the returned Hash:
response.dig('ItemsResult', 'Items')You can extend Vacuum with a custom parser. Just swap the original with a class or module that responds to .parse.
response.parser = MyParser
response.parseIf no custom parser is set, Vacuum::Response#parse delegates to #to_h.
If you are using VCR to test your app, you can use Vacuum's custom matcher to stub requests to the API.
require 'vacuum/matcher'
VCR.configure do |c|
c.default_cassette_options = { match_requests_on: [Vacuum::Matcher] }
endIf you are testing Vacuum itself and want to modify or add its integration tests, add your API credentials to a locales.yml file in the test directory.
- Ask specific questions about the API on the Amazon forum.
- Report bugs and discuss potential features in GitHub issues.
