proj-{uuid}.
Permission required:
project:create · serviceRequest Body
string
required
Project name (1–255 characters)
string
Project description (max 2000 characters)
Response
object
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X POST 'https://app.memorylake.ai/openapi/memorylake/api/v1/projects' \
-H 'Authorization: Bearer sk_xxxxxx' \
-H 'Content-Type: application/json' \
-d '{
"name": "My New Project",
"description": "This project contains documents and memories related to my research"
}'
{
"success": true,
"message": "Operation completed successfully",
"data": {
"id": "proj-a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6",
"name": "My New Project",
"description": "This project contains documents and memories related to my research",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}
}
Create a new project with name and optional description
POST /openapi/memorylake/api/v1/projects
proj-{uuid}.
project:create · servicecurl -X POST 'https://app.memorylake.ai/openapi/memorylake/api/v1/projects' \
-H 'Authorization: Bearer sk_xxxxxx' \
-H 'Content-Type: application/json' \
-d '{
"name": "My New Project",
"description": "This project contains documents and memories related to my research"
}'
{
"success": true,
"message": "Operation completed successfully",
"data": {
"id": "proj-a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6",
"name": "My New Project",
"description": "This project contains documents and memories related to my research",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}
}