Skip to main content
POST
/
workspace
Create a new workspace
curl --request POST \
  --url https://your-xano-instance.xano.io/api:meta/workspace \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "My New Workspace",
  "description": "A new workspace for my project"
}
'
{
  "id": 1,
  "name": "My Workspace",
  "description": "My Workspace Description",
  "branch": "v1"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

name
string
required
description
string

Response

Success!

id
integer<int64>
default:1
name
string
default:My Workspace
description
string
default:My Workspace Description
branch
string
default:v1