Un moderno gestore di attività con progetti, allegati e una REST API pulita. Progettato per la concentrazione — abbastanza semplice per l'uso quotidiano, abbastanza solido per flussi di lavoro reali.
Costruito per la concentrazione. Nessun eccesso, nessun abbonamento — solo uno strumento pulito che fa il lavoro.
Raggruppa le attività in progetti. Mantieni il lavoro, il personale e i progetti secondari chiaramente separati.
Allega immagini, PDF o documenti direttamente a qualsiasi attività. Il contesto esattamente dove appartiene.
Crea, completa e gestisci attività in pochi secondi. L'interfaccia si fa da parte in modo che tu possa concentrarti.
Una API REST pulita e ben strutturata supporta ogni funzione. Crea integrazioni o il tuo client con facilità.
Ogni attività passa per quattro stati — assegnata, in corso, in test, completata. Sai sempre a che punto sei.
L'autenticazione con chiave API protegge i tuoi dati. Nessuna pubblicità, nessun tracciamento, nessuna terza parte. Le tue attività rimangono tue.
Un'interfaccia che si fa da parte e ti lascia lavorare.
Todo List Hub è disponibile come estensione VS Code oggi, con tutte le altre piattaforme in arrivo.
La stessa API che alimenta tutte le nostre app — ora aperta per te. Integra Todo List Hub nei tuoi strumenti o crea il tuo client.
https://todolisthub.app/api/v1
X-Api-Key: <your-api-key>
Ottieni la tua chiave API registrandoti o accedendo. Usala nell'header X-Api-Key per tutte le altre richieste.
/auth/setup
Register a new account
{ "name": "John Doe", "email": "john@example.com", "password": "secret123" }
{ "api_key": "a1b2c3d4e5f6..." }
/auth/login
Log in and retrieve your API key
{ "email": "john@example.com", "password": "secret123" }
{ "api_key": "a1b2c3d4e5f6..." }
Organizza le attività in progetti con nome. Tutte le richieste richiedono il header X-Api-Key.
/projects
List all projects
[{ "id": 1, "name": "Work", "created_at": "2026-01-01T10:00:00Z" }]
/projects
Create a new project
{ "name": "My Project" }
{ "id": 2, "name": "My Project" }
/projects/{id}
Update a project
{ "name": "Renamed Project" }
{ "id": 2, "name": "Renamed Project" }
/projects/{id}
Delete a project
// No content
Crea e gestisci attività nei progetti. Valori di stato: zadano, v_procesu, testovani, hotovo.
/projects/{projectId}/tasks
List tasks in a project
[{ "id": 1, "title": "Write tests", "status": "v_procesu", "attachment_count": 2 }]
/projects/{projectId}/tasks
Create a task
{ "title": "New task", // required "description": "Details...", // optional "due_date": "2026-12-31", // optional "status": "zadano" // optional, default }
// zadano · v_procesu · testovani · hotovo { "id": 5, "title": "New task", "status": "zadano", "attachments": [] }
/tasks/{id}
Get task detail with attachments
{ "id": 5, "title": "New task", "status": "v_procesu", "attachments": [{ "id": 1, "original_name": "file.pdf" }] }
/tasks/{id}
Update a task
{ "title": "Renamed", "status": "hotovo" }
/tasks/{id}
Delete a task and its attachments
// No content
Allega file alle attività. Upload via multipart/form-data, il download restituisce il file originale.
/tasks/{taskId}/attachments
Upload a file
Content-Type: multipart/form-data file: <binary>
{ "id": 1, "original_name": "spec.pdf", "mime_type": "application/pdf", "size": 245120 }
/attachments/{id}
Download a file
// Returns binary file with original Content-Type
/attachments/{id}
Delete an attachment
// No content
Genera un link privato per un progetto e invialo a qualcuno — può aggiungere attività senza registrarsi.
/projects/{projectId}/share
Generate a shareable link for a project
{ "token": "a1b2c3...", "add_task_url": "https://todolisthub.app/api/v1/share/a1b2c3.../tasks" }
/projects/{projectId}/share
Revoke the shareable link
// No content
/share/{token}
Get project name via link (no auth)
{ "project_id": 1, "project_name": "Work" }
/share/{token}/tasks
Add a task via shareable link (no auth)
{ "title": "Review this proposal" }
{ "id": 42, "title": "Review this proposal", "status": "zadano" }