The Ruby Shopping.com API gem.
sudo gem install shoppr
To use the Shopping.com API, you'll need an API key
# Set up your API key
Shoppr.api_key = 'OU812'
then just create a client
client = Shoppr::Client.new
or if you want to use the sandbox test environment you can do so without an API key:
client = Shoppr::Client.new(true)
client.search(:keyword => 'nikon')
client.search(:keyword => 'nikon', :show_product_reviews => true)
More scenario examples can be found on the shopping.com API site
http://rdoc.info/projects/squeejee/shoppr
Copyright (c) 2009 Squeejee. See LICENSE for details.