ReferenceSpaces

Create a space

A space is a named, scoped container inside a memory — one per project, team or integration.

It has its own MCP endpoint, its own conversation history, and its own scoped credentials.

POST
/api/v1/spaces

Authorization

ApiKeyAuth
x-api-key<token>

A platform key (ck_live_…). Mint one in the console under Settings → API Keys.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/api/v1/spaces" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "space_id": "string",  "name": "string",  "slug": "string",  "vault_id": "string",  "memory_id": "string",  "member_count": 0,  "created_at": "2019-08-24T14:15:22Z"}
Was this page helpful?
Report an issue