QR code

QR code

Development

Create an easy to read QR code and URL shortener

Visit API

πŸ“š Documentation & Examples

Everything you need to integrate with QR code

πŸš€ Quick Start Examples

QR code Javascript Examplejavascript
// QR code API Example
const response = await fetch('https://www.qrtag.net/api/', {
    method: 'GET',
    headers: {
        'Content-Type': 'application/json'
    }
});

const data = await response.json();
console.log(data);

The QR tag API simplifies the process of transforming long, unwieldy URLs into clean, concise links coupled with easy-to-scan QR codes. Engineered to be user-friendly and efficient, this API not only has the potential to tidy up the look of your digital marketing materials, but also to improve the overall user experience by facilitating swift access to your online content. The API is designed to seamlessly integrate with any development project, with comprehensive documentation available at QR Tag API Documentation.

Using the QR Tag API empowers you to embrace the power of QR codes, an increasingly-prevalent technology that bridges the gap between physical and digital realms. This API allows you to shorten long URLs, making them more user-friendly and aesthetically appealing. Furthermore, the QR codes generated are smooth and easy to read by any QR code scanning device, further enhancing user experience.

Benefits of using this API:

  • Generate short URLs for clean, user-friendly links
  • Produce beautifully smooth, easy-to-read QR codes
  • Provide users with swift, direct access to your content
  • Enhance your online marketing materials with clean, high-tech design
  • Easily integrate API with any development project

Here is a JavaScript example of calling the API:

const axios = require('axios');

let urlToShorten = "https://www.yourlongurl.com/your-long-url-path";
const apiUrl = "https://www.qrtag.net/api/";

axios.post(apiUrl, {
  longUrl: urlToShorten
})
.then(response => {
  console.log(response.data.shortUrl);
  console.log(response.data.qrCode);
})
.catch(error => {
  console.error(`Error: ${error}`);
});

The code above sends a POST request to the QR Tag API with the long URL in the request body. Then it logs the new short URL and the generated QR code to the console. Remember to replace "https://www.yourlongurl.com/your-long-url-path" with the actual URL you want to shorten.

πŸ“Š 30-Day Uptime History

Daily uptime tracking showing online vs offline minutes

Jun 15Jun 17Jun 19Jun 21Jun 23Jun 25Jun 27Jun 29Jul 1Jul 3Jul 5Jul 7Jul 9Jul 11Jul 1404008001440Minutes
Online
Offline

Related APIs in Development