Skip to main content
The Stardeck API lets you manage your organization’s resources programmatically. Use it to sync content, automate workflows, and integrate Stardeck into your toolchain.

Base URL

https://www.stardeck.ai/api/v1

Available APIs

APIDescription
Knowledge StoreCreate, read, update, and delete knowledge items

Response Format

All responses follow a consistent envelope:
{
  "success": true,
  "data": { ... }
}
Error responses include a message:
{
  "success": false,
  "error": "Description of what went wrong",
  "details": "Optional additional context"
}

Permissions

Each API key is assigned an organization role. The key can only access resources that its role’s permissions allow. For knowledge store operations:
PermissionGrants
knowledge:readRead items
knowledge:writeCreate and update items (includes read)
knowledge:adminDelete items and manage permissions (includes write)
Folder-level permission overrides may further restrict access to specific paths.