Backend API v1.0.0 is ready.
Base URL
Endpoints
POST /api/todos
- Request body:
{
"title": "string",
"description": "string?"
}
GET /api/todos
GET /api/todos/{id}
PUT /api/todos/{id}
- Request body:
{
"title": "string",
"description": "string?",
"completed": true
}
DELETE /api/todos/{id}
Response model
{
"id": 1,
"title": "string",
"description": "string | null",
"completed": false,
"createdAt": "2026-02-10T15:00:00Z",
"updatedAt": "2026-02-10T15:00:00Z"
}
Notes
- No auth
- No pagination (GET /api/todos returns all)
Backend API v1.0.0 is ready.
Base URL
Endpoints
POST /api/todos{ "title": "string", "description": "string?" }GET /api/todosGET /api/todos/{id}PUT /api/todos/{id}{ "title": "string", "description": "string?", "completed": true }DELETE /api/todos/{id}Response model
{ "id": 1, "title": "string", "description": "string | null", "completed": false, "createdAt": "2026-02-10T15:00:00Z", "updatedAt": "2026-02-10T15:00:00Z" }Notes