FEEDBACK & SUPPORT
support@barcodeapi.org

API Documentation

Welcome to BarcodeAPI.org,

  By simply hitting our HTTP/S endpoint you can quickly add barcodes to virtually any application using an intuitive and easy to use barcode generation API.

Our API supports a wide array of barcode formats and offers extensive customization options to meet your specific needs.

Join the many who rely on BarcodeAPI.org for their barcode needs.


§1 Tokens and Rate Limits

  To ensure optimal service for all users, we implement rate limiting and offer tiered pricing plans for high-volume users. While the FREE tier should meet basic usage needs, some users may require higher limits for larger volumes of barcode requests.



Pricing Plans

  If you need higher rate limits, you can upgrade to one of our paid plans. Each plan is flexible and can accommodate varying token usage levels to suit your needs.

For additional details, visit Rate Limits

Requesting a Token

  API tokens are used to manage your rate limits and are issued to paying customers. These tokens ensure that your usage is tracked and that rate limits are properly enforced.

To upgrade your account, visit Usage Contracts

IP-Based Rate Limiting

  Rate limits are enforced based on the IP address of the client making the request. If you plan to generate a large number of barcodes from a central server or location, you will need an API key to manage your rate limits effectively.

Using A Token

  If you have an API token, include it in the Authorization header with each request. The token should be passed as follows:

Authorization: Token=xxxxxxxxxxxx
					

Note: When embedding barcodes in an application accessed by end users, do not include the API key in client-side requests. Rate limits will be managed at the IP level instead, so no API key is needed for each user.


§2 Basic API Usage

  The BarcodeAPI server can generate barcodes for virtually any content passed to the API endpoint. As a RESTful HTTP service, you can make requests using a web browser, command line tools, or other methods, depending on your application’s needs.

HTML
 To embed a barcode in an HTML page:

<img src="https://barcodeapi.org/api/auto/test" />
					

JavaScript
 Use fetch to request a barcode and display it on the current page, while printing the remaining token count to the console.

let url = 'https://barcodeapi.org/api/auto/Try%20Me'
fetch(url, { cache: "no-store" })
  .then(response => {

    var tokens = response.headers.get('X-RateLimit-Tokens');
    console.log("Tokens remaining: " + tokens);

    response.blob().then(blob => {
      var img = document.createElement("img");
      img.src = URL.createObjectURL(blob);
      document.body.appendChild(img);
    });
});
					

curl
 Request and save a barcode using curl

curl https://barcodeapi.org/api/A_Barcode > test.png
					

wget
 Request and save a barcode using wget

wget -o test.png https://barcodeapi.org/api/A_Barcode
					

PowerShell
 Request and save a barcode using PowerShell

Invoke-WebRequest `
  https://barcodeapi.org/api/auto/test -OutFile test.png
					

Python
 Request and save a barcode using Python

import shutil
import requests

url = 'https://barcodeapi.org/api/auto/Try%20Me'
response = requests.get(url, stream=True)
with open('test.png', 'wb') as out_file:
  shutil.copyfileobj(response.raw, out_file)
					

§3 Barcode Formats

  BarcodeAPI supports a wide range of barcode formats, allowing you to generate barcodes for different use cases, such as inventory tracking, product labeling, or QR codes for marketing. For a complete list of available formats, please refer to Barcode Types

Type Selection

  You have two methods for selecting the barcode format: manual type selection and automatic type detection. Each approach offers distinct benefits, with manual selection giving you precise control over the format, while automatic detection offers convenience and flexibility by letting the API choose the most appropriate format for your data.


Manual Type Selection

  If you know exactly which barcode format you need, you can specify it directly in the URL. This gives you full control over the barcode type, ensuring that you get the format that best fits your requirements.
/api/128/abc123
/api/qr/abc123

Automatic Type Detection

  If you don’t want to specify a barcode format, you can let the API automatically determine the best format based on the data you provide. The API will analyze the content and choose the most suitable format.
/api/auto/abc123


§4 Barcode Customization

  BarcodeAPI allows you to customize various aspects of your barcodes to fit your specific needs. Whether you're adjusting the size, color, or other visual properties, the API provides a range of customization options for each barcode type. For a full list of available options, check the Barcode Types page.

Customization Options

  Customization options are added to your request as GET parameters. By appending these parameters to your request URL, you can modify the appearance and behavior of the generated barcode. These options can include things like barcode foreground color, background color, height, width, and more.
Example

/api/qr/test?fg=ff0000&bg=ffffff&height=200
				

Control Characters

  Some barcodes support the encoding of NonPrinting ASCII characters. With a supported barcode type selected, click to open the character keyboard which will assist in inserting non-printing characters.

Visit NonPrinting


§5 Bulk Barcode Generation

Some users need to generate a lot of barcodes.
For this we provide two different tools.

Bulk Generator

  Users wishing to generate a large number of barcodes may wish to use the Bulk Barcode generator. This utility will allow the upload of a CSV containing the barcode requests, and will return a ZIP file containing each of the barcodes.

Visit Bulk Generator

Multis Utility

  Some users may wish to generate a large number of barcodes with one request - a basic JavaScript utility is provided at /multi.html which will generate as many images as requested then prepare the file to be printed.

Visit Multi Generator


§6 Response Headers

The server makes a number of headers available which describe the result of the request.

Barcode Headers

  The server will add several headers related to the barcode including the type and encoded contents.

$ curl --head https://barcodeapi.org/api/auto/abc123
...
Content-Type: image/png
X-Barcode-Type: Code128
X-Barcode-Content: abc123
Content-Disposition: filename=abc123.png
					

Cache Control

  In an attempt to minimize the number of requests, barcodes requested outside of the webapp will have a cache expiration time set.

$ curl --head https://barcodeapi.org/api/auto/abc123
...
Access-Control-Max-Age: 86400
Cache-Control: max-age=86400, public
Expires: Sat, 04 Jan 2025 06:57:14 GMT
					

Rate Limit Headers

  The server will add several headers related to the rate limiter applied to the client.

$ curl --head https://barcodeapi.org/api/auto/abc123
...
X-RateLimit-Cost: 2
X-RateLimit-Tokens: 2032.40
					

Should a client become rate limited, requests will result in a 429. Users must wait until new tokens are generated before additional requests will be served.

$ curl --head https://barcodeapi.org/api/auto/abc123
HTTP/1.1 429 Too Many Requests
...
X-Error-Message: Client is rate limited, try again later.
					

API Redirect

  The server provides a set of static resources served from the root url of the server, in the event a request is made which is not targeted directly at the API nor references a known resources, a 403 redirect will be provided to send the send request to the API handler.

$ curl --head https://barcodeapi.org/abc123
HTTP/1.1 302 Found
...
Location: https://barcodeapi.org/api/auto/abc123
					

Error Headers

  In the event of a render error, an additional header [X-Error-Message] will be available containing details about the exception.


$ curl --head https://barcodeapi.org/api/8/00000009
HTTP/1.1 409 Conflict
...
X-Error-Message: Expected checksum: 0
					

Each type of application failure will result in a unique error code.

400	EMPTY		The request was empty.
400	INVALID		Invalid data for selected code type.
403	BLACKLIST	The request was rejected.
409	CHECKSUM	Expected checksum: 0
429	LIMITED		Client is rate limited, try again later.
500	FAILED		Failed to render barcode.
503	BUSY		Server is busy, please try again.
					

§7 User Session Info

Users of the web interface are assigned a session token for basic history tracking. By default, your browser will pass this token along with each request. Sessions will generally expire several days after last use, but may also be deleted from the server cache on request.

To view the details of your current session, visit Session Info


§8 Technical Support

Did we miss something?
Please send us an email.
We will respond as soon as possible.

support@barcodeapi.org