Plain Text QR Code
Create a QR code containing plain text.
Type Identifier
type: "plainText"
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Must be "plainText" |
text | string | Required | The 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."
}
}'