Skip to content

QR Code Generator

Heavstal QR Engine generates high-quality QR codes for URLs, text, Wi-Fi configs, or vCards. The result is uploaded to cloud storage, returning a direct image link you can share or embed immediately.

POST /qrcode

FieldTypeRequiredDescription
textstringYesThe content to encode (URL, Text, etc.).
colorstringNoDot color in Hex format (Default: #000000).
bgstringNoBackground color in Hex format (Default: #ffffff).
const res = await fetch('https://heavstal.com.ng/api/v1/qrcode', {
method: 'POST',
headers: { 'x-api-key': 'YOUR_KEY' },
body: JSON.stringify({
text: 'https://google.com',
color: '#ff0000' // Red QR Code
})
});
{
"status": "success",
"creator": "HEAVSTAL TECH",
"data": {
"text": "https://google.com",
"link": "https://files.catbox.moe/qrcode.png"
}
}