Any free UPC / Barcode DB

I am looking for a free UPC or Barcode database available for download. I have seen upcdataBase.com and several others, but they do not allow free db downloads. The file type is not a big problem as I can work with SQL, csv, text, XML, json or something else.

Does anyone know where I can find him? I don't want a web service, I need an actual file or a way to download all the upcs or barcodes that someone has. A large inclusive db would be great, but even a partial db would be great. Thanks

+4
source share
3 answers

Gregg London sells UPC databases as a "product download service." The site has additional information: http://www.glondon.com/upcdatabase.html

+1
source

Logical Solutions (http://www.LogicalSo.com) sells UPC barcode software that scans web pages for barcodes and product names, and create a database for you.

+2
source

You can probably quickly create mashup with: searchupc.com and upcdata.info, and then get product information from the google product API.

Alternatively, you can use the AWSECommerceService API to retrieve something like this:

ItemLookupRequest request = new ItemLookupRequest(); request.getResponseGroup().add("Large"); request.setIdType("UPC"); // TODO: need to change if it EAC request.getItemId().add(upc); request.setSearchIndex("All"); 
+1
source

Source: https://habr.com/ru/post/1337341/


All Articles