Get your first API call working in under 5 minutes.
Navigate to your workspace settings and generate an API key from the Developer section.
Settings → Developer → API Keys → Generate New Key
Use curl or your HTTP client of choice to call the REST API.
# List your workspaces
curl ${API_URL}/v1/workspaces \
-H "Authorization: Bearer YOUR_API_KEY"
# Create a workspace
curl -X POST ${API_URL}/v1/workspaces \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "My Agency",
"slug": "my-agency",
"ownerEmail": "owner@example.com",
"plan": "free"
}'Once your workspace is created, invite team members by sending them an invite link from workspace settings.
Settings → Members → Invite Member → Enter email → Set role → Send Invite