Wordspace Public API

Workspaces

Use workspaces as account-level environments for campaigns, teams, or customers.

Free includes 1 workspace; Origin includes 3; Thrive includes 5; Scale includes 10; Enterprise is unlimited. Paid accounts can add workspace units for $5/month or $60/year each.
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"
  }'
curl https://api.wordspace.io/api/v1/workspaces/{workspace_id} \
  -X PATCH \
  -H "Authorization: Bearer wdsp_live_..." \
  -H "Content-Type: application/json" \
  -d '{ "name": "Retail Campaigns 2026" }'

Workspace deletion and member management remain app-only in v1.

Workspace create requests that exceed the account package and purchased workspace add-ons return workspace_limit_reached.

Workspaces - Wordspace API Documentation