Wordspace Public API

QR Codes

Create, list, update, move, and delete QR codes within the API key account.

Free includes 10 QR codes and 10 links; Origin includes 100 each; Thrive includes 500 each; Scale includes 5,000 QR codes and 1,000 links; Enterprise is unlimited. QR code and link capacity is account-level; workspace routes apply that same package capacity within the selected workspace.
curl https://api.wordspace.io/api/v1/workspaces/{workspace_id}/qr-codes \
  -H "Authorization: Bearer wdsp_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Spring menu",
    "destination_url": "https://example.com/menu",
    "tags": ["restaurant", "spring"]
  }'
curl https://api.wordspace.io/api/v1/qr-codes/{id} \
  -X PATCH \
  -H "Authorization: Bearer wdsp_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "workspace_id": "{workspace_id}" }'

Moving a QR code changes its workspace context without changing the account that owns it. A key cannot move or read QR codes across account boundaries.

Create requests that exceed account QR-code capacity return qr_code_limit_reached.

Qr Codes - Wordspace API Documentation