I'm looking for a free UPC or Barcode database that is available for download. I have seen upcdataBase.com and a few others, but those do not allow for a free download of the db. File type is not a huge issue as I can work with SQL, csv, text, XML, json or anything else.
Anyone know where I can find one? I do not want a web service, I need an actual file or method of downloading all of the upcs or barcodes someone has. A large inclusive db would be great, but even a partial db would be great. Thanks
Logical Solutions (http://www.LogicalSo.com) sells UPC barcode datamining software that scans the web for barcodes and product names, and build a database for you.
Gregg London sells UPC databases in the form of a "Product Load Service". There is more information on their site: http://www.glondon.com/upcdatabase.html
You probably can make a quick mashup using: searchupc.com and upcdata.info and then retrieve product information from google product API.
Also, you can use AWSECommerceService API to retrieve something like this:
ItemLookupRequest request = new ItemLookupRequest();
request.getResponseGroup().add("Large");
request.setIdType("UPC"); // TODO: need to change if it's EAC
request.getItemId().add(upc);
request.setSearchIndex("All");
精彩评论