TaskFlow

A simple API to manage your tasks with creation, editing and completion.

📝 Create tasks

Add tasks with title and description.

✏️ Edit tasks

Update details or mark as completed.

🗑️ Delete tasks

Remove tasks you no longer need.

View Documentation Try TaskFlow Get API

Quick Example


# Get all tasks
GET /tasks

Response:
[
  { "id": 1, "title": "Do homework", "concluded": false },
  { "id": 2, "title": "Read book", "concluded": true }
]