Barcode API

Integrate barcode lookup and analysis directly into your applications.

POST

1. Authentication

This endpoint allows users to authenticate and retrieve an access token. The token is required to make subsequent API requests.

/api/auth/getToken
Request Body
{
  "userKey": "YOUR_USER_KEY",
  "apiKey": "YOUR_API_KEY"
}
Try It
POST

2. Fetch Barcode

This endpoint allows you to fetch details about a specific barcode, including product name, pricing information, and availability.

Authorization:: This request requires a valid token in the
/api/barcode
Request
{
  "barcode": "8690632994802"
}
Response Example
[
  {
    "barcode": "8690...",
    "text": "Product Name...",
    "prices": []
  }
]
Try It
Auth
* Auto-filled from Authentication step
Barcode

                            
POST

3. Barcode Analysis

This endpoint analyzes the given barcode and provides details such as country of origin, manufacturer code, and product code.

/api/analysis
Try It
Auth
Barcode