page_size 和 continuation_token 控制分页。
所需权限:
project:list路径参数
string
required
工作空间标识符
查询参数
integer
每页返回的项目数量
string
上一次响应返回的令牌,用于获取下一页结果
string
按项目名称模糊筛选(部分匹配)
响应
object
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET 'https://app.memorylake.cn/openapi/memorylake/api/v3/workspaces/ws_abc123/projects?page_size=20' \
-H 'Authorization: Bearer sk_xxxxxx'
{
"success": true,
"data": {
"items": [
{
"id": "proj_def456",
"name": "Customer Research",
"description": "Interview transcripts and survey analysis",
"industries": [
{
"id": "ind_tech01",
"name": "Technology",
"description": "Software and technology sector"
}
],
"custom_id": "research-2024-q1",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-02-10T08:15:00Z"
}
],
"continuation_token": "eyJsYXN0SWQiOiJwcm9qX2RlZjQ1NiJ9"
}
}
返回工作空间中项目的分页列表,支持可选的筛选条件
GET /openapi/memorylake/api/v3/workspaces/{workspaceId}/projects
page_size 和 continuation_token 控制分页。
project:listcurl -X GET 'https://app.memorylake.cn/openapi/memorylake/api/v3/workspaces/ws_abc123/projects?page_size=20' \
-H 'Authorization: Bearer sk_xxxxxx'
{
"success": true,
"data": {
"items": [
{
"id": "proj_def456",
"name": "Customer Research",
"description": "Interview transcripts and survey analysis",
"industries": [
{
"id": "ind_tech01",
"name": "Technology",
"description": "Software and technology sector"
}
],
"custom_id": "research-2024-q1",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-02-10T08:15:00Z"
}
],
"continuation_token": "eyJsYXN0SWQiOiJwcm9qX2RlZjQ1NiJ9"
}
}