Skip to main content

Plain Text QR Code

Create a QR code containing plain text.

Type Identifier

type: "plainText"

Fields

FieldTypeRequiredDescription
typestringRequiredMust be "plainText"
textstringRequiredThe text content

Use Cases

  • Product labels — Embed serial numbers or product info
  • Notes and messages — Share quick text-based information
  • Inventory management — Encode item identifiers
  • Internal systems — Machine-readable text data

Content Schema

{
"type": "plainText",
"text": "Hello, world!"
}

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": "Welcome Message",
"type": "plainText",
"content": {
"type": "plainText",
"text": "Welcome to our store! Ask staff for assistance."
}
}'