Our platform provides barcode generation, lookup, and analysis. To get started, follow these steps:
To use the API, authenticate by sending a request:
POST /api/auth/getToken
{ "userKey": "...", "apiKey": "..." }
Response:
{ "token": "..." }
Retrieve product details using a barcode:
POST /api/barcode
{ "barcode": "8690632994802" }
Headers:
Authorization: Bearer ...token...
Response:
{ "barcode": "8690632994802", "text": "Nestle Kare Çikolata Damak Baklava" }
Get details such as country of origin and manufacturer information:
POST /api/analysis
{ "barcode": "8690632994802" }
Headers:
Authorization: Bearer ...token...
Response:
{ "country": "Turkey", "manufacturerCode": 632, "productCode": 99480 }
If you need further assistance, contact us via our Support Page.