Follow these simple steps to start using EAN-DB API:

Now everything is ready for a first request! Include the JWT in the Authorization header of the API request using the following format: Authorization: Bearer HERE_GOES_YOUR_JWT_TOKEN. A request like this:
curl -X GET -H 'Authorization: Bearer HERE_GOES_YOUR_JWT_TOKEN' -H 'Accept: application/json' \
https://ean-db.com/api/v2/product/1234567890123
will return a ProductResponse object:
{
"balance": 100,
"product": {
"barcode": "1234567890123",
"barcodeDetails": {
"type": "EAN-13",
"description": "GS1 US",
"country": "us"
},
"titles": {
"en": "Product title",
"de": "Produktname"
},
"categories": [
{
"id": "543543",
"titles": {
"en": "Print Books"
}
}
],
"manufacturer": {
"id": "manufacturer-id",
"titles": {
"en": "Product manufacturer"
},
"wikidataId": "Q12345"
},
"relatedBrands": [],
"images": [
{
"url": "https://ean-db.com/image.jpg"
}
],
"metadata": {
"printBook": {
"numPages": 123
},
"media": {
"publicationYear": 2010
}
}
}
}
Read more about our Product API and how it is billed.
Additionally, you may find our Account API useful in certain scenarios. Find detailed information about it here.