Wordspace Public API
Quickstart
Create a workspace, then create a QR code inside it.
1. Create a workspace
curl https://api.wordspace.io/api/v1/workspaces \
-H "Authorization: Bearer wdsp_live_..." \
-H "Content-Type: application/json" \
-d '{
"name": "Retail Campaigns",
"description": "QR links for in-store signage"
}'2. Create a workspace QR code
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"]
}'3. List workspace QR codes
curl "https://api.wordspace.io/api/v1/workspaces/{workspace_id}/qr-codes?limit=25" \
-H "Authorization: Bearer wdsp_live_..."