List Projects
Retrieve all projects for the authenticated user.Request
Response
Create Project
Create a new project.string
required
Project name (unique per user)
string
Optional project description
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl https://t0ken.ai/api/v1/projects \
-H "X-API-Key: omx_your_api_key"
{
"success": true,
"data": [
{
"id": "proj_default",
"name": "default",
"description": "Default project",
"created_at": "2026-02-13T10:00:00Z"
}
]
}
curl -X POST https://t0ken.ai/api/v1/projects \
-H "X-API-Key: omx_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"name": "my-app",
"description": "My AI application memories"
}'
{
"success": true,
"data": {
"id": "proj_myapp",
"name": "my-app",
"description": "My AI application memories",
"created_at": "2026-02-13T10:00:00Z"
}
}
curl https://t0ken.ai/api/v1/projects/proj_myapp \
-H "X-API-Key: omx_your_api_key"
curl -X DELETE https://t0ken.ai/api/v1/projects/proj_myapp \
-H "X-API-Key: omx_your_api_key"
Was this page helpful?