Hi 馃憢馃徏, are you ready to start your travel with our tool? Our tool is temporarily free to use! 馃殌

C贸digos de barras

GET https://qrecc.pl/api/barcodes/
curl --request GET \
--url 'https://qrecc.pl/api/barcodes/' \
--header 'Authorization: Bearer {api_key}' \
Par谩metros Detalles Descripci贸n
page Opcional Entero (Integer) El n煤mero de p谩gina que quieres obtener. Por defecto 1.
results_per_page Opcional Entero (Integer) Cu谩ntos resultados deseas por p谩gina. Valores permitidos: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Por defecto 25.
{ "data": [ { "id": 1, "type": "C32", "name": "Example name", "value": "123456", "barcode": "https://qrecc.pl/uploads/barcode/example.svg", "settings": { "foreground_color": "#000000", "width_scale": 2, "height": 50, }, "embedded_data": "123456", "last_datetime": null, "datetime": "2025-06-12 03:24:51" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://qrecc.pl/api/barcodes?&page=1", "last": "https://qrecc.pl/api/barcodes?&page=1", "next": null, "prev": null, "self": "https://qrecc.pl/api/barcodes?&page=1" } }
GET https://qrecc.pl/api/barcodes/{barcode_id}
curl --request GET \
--url 'https://qrecc.pl/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "type": "C32", "name": "Example name", "value": "123456", "barcode": "https://qrecc.pl/uploads/barcode/example.svg", "settings": { "foreground_color": "#000000", "width_scale": 2, "height": 50, }, "embedded_data": "123456", "last_datetime": null, "datetime": "2025-06-12 03:24:51" } }
POST https://qrecc.pl/api/barcodes
Par谩metros Detalles Descripci贸n
project_id Opcional Entero (Integer) -
name Obligatorio Cadena (String) -
type Obligatorio Cadena (String) Valores permitidos: C32, C39, C39+, C39E, C39E+, C93, S25, S25+, I25, I25+, ITF14, C128, C128A, C128B, C128C, EAN2, EAN5, EAN8, EAN13, UPCA, UPCE, MSI, MSI+, POSTNET, PLANET, TELEPENALPHA, TELEPENNUMERIC, RMS4CC, KIX, IMB, CODABAR, CODE11, PHARMA, PHARMA2T
is_bulk Opcional Booleano (Boolean)
value Obligatorio Cadena (String) -
foreground_color Opcional Cadena (String) -
width_scale Opcional Entero (Integer) 1-10
height Opcional Entero (Integer) 30-1000
Par谩metros Detalles Descripci贸n
curl --request POST \
--url 'https://qrecc.pl/api/barcodes' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=New York' \
--form 'type=text' \
--form 'text=Hello!' \
{ "data": { "id": 1 } }
POST https://qrecc.pl/api/barcodes/{barcode_id}
Par谩metros Detalles Descripci贸n
project_id Opcional Cadena (String) -
name Opcional Cadena (String) -
type Opcional Cadena (String) Valores permitidos: C32, C39, C39+, C39E, C39E+, C93, S25, S25+, I25, I25+, ITF14, C128, C128A, C128B, C128C, EAN2, EAN5, EAN8, EAN13, UPCA, UPCE, MSI, MSI+, POSTNET, PLANET, TELEPENALPHA, TELEPENNUMERIC, RMS4CC, KIX, IMB, CODABAR, CODE11, PHARMA, PHARMA2T
value Obligatorio Cadena (String) -
foreground_color Opcional Cadena (String) -
width_scale Opcional Entero (Integer) 1-10
height Opcional Entero (Integer) 30-1000
curl --request POST \
--url 'https://qrecc.pl/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
{ "data": { "id": 1 } }
DELETE https://qrecc.pl/api/barcodes/{barcode_id}
curl --request DELETE \
--url 'https://qrecc.pl/api/barcodes/{barcode_id}' \
--header 'Authorization: Bearer {api_key}' \