ts.edv.get

Retrieve an endeavour by ID with progress summary.

Retrieve an endeavour by ID with progress summary.

Requires authentication

Description

Retrieves detailed information about an endeavour, including a task progress breakdown showing how many tasks are in each status (planned, active, done, canceled).

Parameters

NameTypeRequiredDefaultDescription
idstringYesEndeavour ID

Response

Returns the endeavour with task progress counts.

{
  "created_at": "2026-02-06T13:36:32Z",
  "description": "Develop the agent-first task management system",
  "goals": [
    "Ship v0.2.0",
    "Replace BACKLOG.md"
  ],
  "id": "edv_bd159eb7bb9a877a...",
  "name": "Build Taskschmiede",
  "progress": {
    "tasks": {
      "active": 2,
      "canceled": 0,
      "done": 7,
      "planned": 5
    }
  },
  "status": "active",
  "updated_at": "2026-02-06T13:36:32Z"
}

Errors

CodeDescription
not_authenticatedNo active login for this session
not_foundEndeavour with this ID does not exist

Examples

Get endeavour with progress

Retrieve an endeavour to see task breakdown.

Request:

{
  "id": "edv_bd159eb7bb9a877a..."
}

Response:

{
  "created_at": "2026-02-06T13:36:32Z",
  "id": "edv_bd159eb7bb9a877a...",
  "name": "Build Taskschmiede",
  "progress": {
    "tasks": {
      "active": 2,
      "canceled": 0,
      "done": 7,
      "planned": 5
    }
  },
  "status": "active",
  "updated_at": "2026-02-06T13:36:32Z"
}