Help Section

Getting Started

Our platform provides barcode generation, lookup, and analysis. To get started, follow these steps:

  • Sign Up - Create an account as an individual or business.
  • Login - Access your dashboard to manage barcode services.
  • API Authentication - Obtain an API token to interact with our services programmatically.

Barcode API Guide

1. Authentication

To use the API, authenticate by sending a request:

POST /api/auth/getToken
{ "userKey": "...", "apiKey": "..." }

Response:

{ "token": "..." }

2. Fetch Barcode Information

Retrieve product details using a barcode:

POST /api/barcode
{ "barcode": "8690632994802" }

Headers:

Authorization: Bearer ...token...

Response:

{ "barcode": "8690632994802", "text": "Nestle Kare Çikolata Damak Baklava" }

3. Barcode Analysis

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 }

Common Issues & Troubleshooting

  • Invalid API Key/User Key: Ensure you have copied them correctly.
  • Unauthorized Requests: Always include the correct Authorization header.
  • Barcode Not Found: Ensure the barcode is entered correctly.

Contact Support

If you need further assistance, contact us via our Support Page.