Last updated 1 month ago
Get all tasks for a project
Tasks
const response = await fetch('https://www.taskade.com/api/v1/projects/{projectId}/tasks', { method: 'GET', headers: {}, }); const data = await response.json();
{ "ok": true, "items": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "text": "text", "parentId": "123e4567-e89b-12d3-a456-426614174000", "completed": false } ] }