Appropriate api to get product information from scanned barcode of iphone app?

Develops an application for scanning sample barcodes. I am using the ZBar API to scan the product barcode. It works very well. Now, looking to get a product of a scanned barcode. I want to get below product details from api,

Product Name Product Price Selling fees (eBay or Amazon fees) Shipping costs Shipping dimensions Shipping weights 

I search and continue to get the exact result for the question on google. But so far this does not work out. Can anyone suggest their ideas on this? Can you suggest the Amazon API to get product information with a barcode? Thanks in advance.

Edition:

I tried this API to get product information, http://searchupc.com/ API. It returns only the product name, price, product URL, currency, storage name. But, I want to show the above (in question) details for the user. Please help me find the exact API for product details.

+4
source share
2 answers

This is highly dependent on the data that is encoded in the barcode that you are viewing. If you yourself generate barcodes, you can create unique identifiers for any product that you use for bar coding. Otherwise, there is no central repository for identifiers that use a barcode, you need to determine what is being scanned (or the user tells you) and use the appropriate API (if one exists) to search for data based on the encoded identifier.

+1
source

A free API is available, it can be seen here.

To use this API, you need to create a developer account.

+3
source

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


All Articles