QR Generator API


This is the official PikaQR Genrator API. Integrate QR codes into your system or workflow. This API is perfect for creating QR codes in svg format.
We cache your qr code image files for 5 minutes on our server. After this time the qr code image will be deleted from the server. A free user allows only 10 requests per 1 minute via the api interface.
Please note that this resource is under development and can be changed without notice.

Create QR Code

Create any custom QR code with this API. You can access this endpoint with POST and GET request.

GET Request

All Parameters need to be added in the single URL.

Example of GET request to design QR Code

Request Method:

GET

Request URL:

https://qr.creativewebspace.net/api/create?data=PikaQRGenerator

Request Parameters:

        
"data":"Text"
"bodycolor":"#000000" // optional
"bgcolor":"#ffffff"   // optional
"size":"300"          // optional
        
        

Respond:

{
"data": {
    "image": "https://qr.creativewebspace.net/images/qrcode/656a6d275a2fd.svg",
    "body_color": "#ffffff",
    "bg_color": "#000000",
    "size": 300,
    "type": "svg",
    "created_at": "2023-12-01 11:12"
        },
"message": "success"
}

Outcome: