A simple API service that generates QR code images from user-provided text or URLs.
You send a JSON request specifying the content, filename, and output image format, and get a downloadable QR code image in response.
- Generate QR codes from any text or URL.
- Choose output image format: PNG, JPG, or SVG.
- Customize the filename of the generated QR code image.
- Easy-to-use JSON API request format.
Make a POST request to the API endpoint (e.g., /qrcode) with a JSON body structured as follows:
{
"content": "str",
"filename": "str",
"format": "jpg/png/jpeg/gif/webp"
}