Get Knowledge Item
curl --request GET \
--url https://www.stardeck.ai/api/v1/knowledge/items/{path}{
"success": true,
"data": {
"item": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"organizationId": "org_2abc123",
"path": "docs/api/overview.md",
"content": "# API Overview\n\nWelcome to the API.",
"itemType": "text",
"fileKey": null,
"fileName": null,
"contentType": null,
"fileSize": null,
"requiredReadPermission": "inherit",
"requiredWritePermission": "inherit",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-01-15T10:30:00.000Z"
}
}
}
Knowledge Store
Get Knowledge Item
GET
/
api
/
v1
/
knowledge
/
items
/
{path}
Get Knowledge Item
curl --request GET \
--url https://www.stardeck.ai/api/v1/knowledge/items/{path}{
"success": true,
"data": {
"item": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"organizationId": "org_2abc123",
"path": "docs/api/overview.md",
"content": "# API Overview\n\nWelcome to the API.",
"itemType": "text",
"fileKey": null,
"fileName": null,
"contentType": null,
"fileSize": null,
"requiredReadPermission": "inherit",
"requiredWritePermission": "inherit",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-01-15T10:30:00.000Z"
}
}
}
Retrieve a single knowledge item by its path.
The item path, e.g.
docs/api/overview.md. Nested paths use / separators.{
"success": true,
"data": {
"item": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"organizationId": "org_2abc123",
"path": "docs/api/overview.md",
"content": "# API Overview\n\nWelcome to the API.",
"itemType": "text",
"fileKey": null,
"fileName": null,
"contentType": null,
"fileSize": null,
"requiredReadPermission": "inherit",
"requiredWritePermission": "inherit",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-01-15T10:30:00.000Z"
}
}
}
Always
true for successful responses.Show data
Show data
⌘I