QR Codes To Website avatar
QR Codes To Website
Under maintenance

Pricing

Pay per event

Go to Apify Store
QR Codes To Website

QR Codes To Website

Under maintenance

This Apify Actor runs as a web service (Standby Mode) to generate QR codes on-demand. It accepts a list of URLs/texts and returns a fully rendered HTML page displaying the generated QR codes with their associated names.

Pricing

Pay per event

Rating

0.0

(0)

Developer

Patrik Braborec

Patrik Braborec

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

QR Code Website Generator

This Apify Actor runs as a web service (Standby Mode) to generate QR codes on-demand. It accepts a list of URLs/texts and returns a fully rendered HTML page displaying the generated QR codes with their associated names.

Features

  • Real-time Generation: Generates QR codes instantly via HTTP requests.
  • HTML Output: Returns a responsive, styling HTML page directly in the response.
  • Pay-Per-Event Pricing: You are charged strictly for the number of QR codes generated.
  • Input Mapping: Associates custom names with each QR code for easy identification.

Usage

This Actor is designed to be used as an API or web service.

1. API Usage (POST)

Send a POST request to the Actor's Standby URL with a JSON body containing your QR code requests.

Endpoint: POST https://<YOUR_ACTOR_RUN_URL>

Headers: Content-Type: application/json

Request Body:

{
"qrCodes": [
{
"name": "Apify Homepage",
"url": "https://apify.com"
},
{
"name": "Documentation",
"url": "https://docs.apify.com"
}
]
}

Response: The server returns a text/html response containing the generated webpage with your QR codes.

2. Browser Usage (GET)

If you navigate to the Actor's Standby URL in a web browser:

  1. The Actor attempts to read the Default Input configured for the run (in Key-Value stores).
  2. If valid input is found, it generates and displays the QR codes.
  3. If no input is found, it displays a help page with usage instructions.

Input Schema

The input is a JSON object with a single required array qrCodes.

FieldTypeDescription
qrCodesArrayList of objects defining the codes to generate.
qrCodes[].nameStringA display name/title for the QR code.
qrCodes[].urlStringThe text or URL to encode in the QR code.

Pricing

This Actor utilizes the Pay-Per-Event (PPE) monetization model.

  • Price: $0.10 USD per generated QR code.
  • Example: Requesting 5 QR codes will cost $0.50 + standard platform compute usage.

Development

This project uses TypeScript.

# Install dependencies
npm install
# Run locally
npm start