Per Seat: €3.00
Monthly Subscription: €1.00
Usage Based API: €1.00
Find and read barcodes in any image and see the location and content of each code with this barcode reader API. More info...
Find and read barcodes in any image and see the location and content of each code with this barcode reader API. It’s an invaluable tool that can be used in a wide range of applications – from retail scenarios like invoicing in stores and warehouses to tracking rental cars and equipment to healthcare uses like patient identification and medicine tracking, and much more.
The API is compatible with a wide range of code languages.
Finds and reads all barcodes in an input image. The recognized barcode types are UPC-A, EAN-13, EAN-8, CODE-128, CODE-25 and CODE-39.
image
– Input image.barcodes
– An object containing the recognized codes and
their types, as well as the confidence levels which reflect the
quality of the print and bounding boxes of the codes.Example output:
{
"objects": [
{
"code": "This is an example of Code-128 barcode.",
"confidence": 0.931980393149636,
"name": "barcode",
"rectangle": {
"h": 705,
"w": 2659,
"x": 227,
"y": 944
},
"type": "CODE-128"
},
{
"code": "6416453034570",
"confidence": 0.6332567654011872,
"name": "barcode",
"rectangle": {
"h": 555,
"w": 353,
"x": 2206,
"y": 231
},
"type": "EAN-13"
}
]
}