Skip to main content

WiFi QR Code

Create a QR code that connects users to a WiFi network.

Type Identifier

type: "wifi"

Fields

FieldTypeRequiredDescription
typestringRequiredMust be "wifi"
ssidstringRequiredNetwork name (SSID)
passwordstringOptionalNetwork password
encryptionstringOptionalEncryption type: WPA, WEP, or nopass
hiddenbooleanOptionalWhether the network is hidden

Encryption Types

ValueDescription
WPAWPA/WPA2 encryption (most common)
WEPWEP encryption (legacy)
nopassOpen 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"
}
}'