WiFi QR Code
Create a QR code that connects users to a WiFi network.
Type Identifier
type: "wifi"
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Must be "wifi" |
ssid | string | Required | Network name (SSID) |
password | string | Optional | Network password |
encryption | string | Optional | Encryption type: WPA, WEP, or nopass |
hidden | boolean | Optional | Whether the network is hidden |
Encryption Types
| Value | Description |
|---|---|
WPA | WPA/WPA2 encryption (most common) |
WEP | WEP encryption (legacy) |
nopass | Open network (no password) |
Use Cases
- Guest networks — Hotels, cafes, offices
- Home networks — Share with guests easily
- Events — Conference WiFi access
- Retail stores — Customer WiFi access
Content Schema
{
"type": "wifi",
"ssid": "MyNetwork",
"password": "secretpassword",
"encryption": "WPA"
}
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": "Office WiFi",
"type": "wifi",
"content": {
"type": "wifi",
"ssid": "Office-Guest",
"password": "welcome2024",
"encryption": "WPA"
}
}'