Skip to content

Projects API

Base path /api/projectsJWT required; every project is scoped to the authenticated user.

Endpoints

MethodPathPurpose
GET/api/projectsList your projects (with source/KB/session counts)
POST/api/projectsCreate a project
GET/api/projects/:idGet a project
PUT/api/projects/:idUpdate a project
DELETE/api/projects/:idDelete a project

Create

http
POST /api/projects
Content-Type: application/json

{
  "name": "Magnesium research",
  "domain": "health",
  "tags": ["sleep", "minerals"],
  "targetApps": ["activaura"]
}

→ Related: Sources · Research

Released under the MIT License.