Skip to main content

App QR Code

Create a QR code linking to an app on the App Store and Google Play.

Type Identifier

type: "app"

Fields

FieldTypeRequiredDescription
typestringRequiredMust be "app"
app_namestringRequiredApplication name
developerstringOptionalDeveloper name
descriptionstringOptionalApp description
app_store_urlstringOptionalApple App Store URL
google_play_urlstringOptionalGoogle 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"
}
}'