Product category search from UPC code

Is there a way to get a product category from my UPC code?

For example, I want to use the upc code to determine if there is a food product, frozen food, milk bread, alcohol, etc.

Is there a web service that will do this?

+3
source share
2 answers

The Wikipedia article says nothing about a UPC containing a product category number. UPC consists only of the global manufacturer number and article number. A.

upcdata.info , - (, "" "", " " ).

EAN/UPC:

, -, GEPIR ( EAN GLN, UPC).

, , Nestlé, Procter & Gamble .., (), .

, , (, ), "".

, , .

!

+3

, mashup : searchupc.com upcdata.info, API google.

, API AWSECommerceService - :

        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: https://habr.com/ru/post/1783688/


All Articles