GET /barcode/types
List all supported barcode formats for generation, including Code 128, Code 39, EAN-13, EAN-8, UPC-A, QR Code, Data Matrix, and more. Use this to discover which barcode types are available and their characteristics before generating barcodes. Useful for inventory management apps and shipping label generators that need to select the right barcode format.
curl https://nordapi.ee/api/v1/barcode/types
{
"data": {
"code128": "Code 128",
"code39": "Code 39",
"datamatrix": "Data Matrix",
"ean13": "EAN-13",
"ean8": "EAN-8",
"pdf417": "PDF417",
"qr": "QR Code",
"upca": "UPC-A"
},
"success": true
}