https://github.com/dreamscached/qrify
Free public API for QR code generation on the command line
https://github.com/dreamscached/qrify
cli cloudflare cloudflare-workers qrcode qrcode-generator qrcode-generator-api
Last synced: 9 months ago
JSON representation
Free public API for QR code generation on the command line
- Host: GitHub
- URL: https://github.com/dreamscached/qrify
- Owner: dreamscached
- Created: 2025-06-23T12:31:56.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2025-06-26T14:11:12.000Z (12 months ago)
- Last Synced: 2025-06-26T14:32:39.464Z (12 months ago)
- Topics: cli, cloudflare, cloudflare-workers, qrcode, qrcode-generator, qrcode-generator-api
- Language: TypeScript
- Homepage: https://qrify.dev
- Size: 1.02 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🏷️ QRIFY.DEV
Free public API for QR code generation on the command line.
## Usage
### Quick
For quick generation of QR codes, you can use `/:text` endpoint like this:
```http
GET https://qrify.dev/Hello,_World!
```
This path is designed to be used either by humans who type it out manually
or with simple alphanumeric codes and alike strings — it is limited to
100 characters, does not allow slashes and single underscores `_` are
converted to spaces (to insert an actual underscore double it like this
— `__`)
### Full-path
Instead of 'quick' endpoint mentioned above, scripts can use `/qr/:text`
endpoint:
```http
GET https://qrify.dev/qr/Hello,%20World!
```
Unlike the abovementioned quick endpoint, here _everything_ after `/qr/`
part is encoded as QR code, including slashes etc.
> [!NOTE]
> Don't forget to URL-encode your data before passing it in URL.