App QR Code
Create a QR code linking to an app on the App Store and Google Play.
Type Identifier
type: "app"
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Must be "app" |
app_name | string | Required | Application name |
developer | string | Optional | Developer name |
description | string | Optional | App description |
app_store_url | string | Optional | Apple App Store URL |
google_play_url | string | Optional | Google Play Store URL |
Use Cases
- App downloads — Drive installs from physical media
- App marketing — Promote your app at events or in print
- App onboarding — Help users quickly find and install your app
- Cross-platform links — Automatically direct to the right store
Content Schema
{
"type": "app",
"app_name": "Acme App",
"developer": "Acme Inc",
"description": "The official Acme mobile app",
"app_store_url": "https://apps.apple.com/app/acme/id123456789",
"google_play_url": "https://play.google.com/store/apps/details?id=com.acme.app"
}
Example Request
curl -X POST "https://integration-api.qr-build.com/qr-codes" \
-H "X-API-Key: qrb_live_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Download Our App",
"type": "app",
"content": {
"type": "app",
"app_name": "Acme App",
"developer": "Acme Inc",
"description": "The official Acme mobile app",
"app_store_url": "https://apps.apple.com/app/acme/id123456789",
"google_play_url": "https://play.google.com/store/apps/details?id=com.acme.app"
}
}'