Skip to main content
POST
/
workspaces
curl -X POST https://api.60db.ai/workspaces \
  -H "Authorization: Bearer your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Development",
    "description": "Development workspace"
  }'
{
  "id": "ws-456",
  "name": "Development",
  "description": "Development workspace",
  "created_at": "2026-01-29T11:35:00Z"
}

Request

Headers

Authorization
string
required
Bearer token with your API key
Content-Type
string
required
application/json

Body

name
string
required
Workspace name
description
string
Workspace description

Response

id
string
Workspace ID
name
string
Workspace name
description
string
Workspace description
created_at
string
Creation timestamp
curl -X POST https://api.60db.ai/workspaces \
  -H "Authorization: Bearer your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Development",
    "description": "Development workspace"
  }'
{
  "id": "ws-456",
  "name": "Development",
  "description": "Development workspace",
  "created_at": "2026-01-29T11:35:00Z"
}