The Todo API allows you to retrieve a list of todo items and create new todo items.
The base URL for all API requests is:
GET /todos
Returns a list of all todo items.
Returns a JSON array of todo objects, each with the following properties:
id
: The unique identifier of the todo.title
: The title of the todo.description
: A brief description of the todo.due_date
: The due date for the todo.status
: The current status of the todo.Request:
GET /todos
Response: