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