A simple and efficient API designed to manage your to-do list. Add, view, and organize your tasks effortlessly.
http://127.0.0.1:3000
- URL
/todos
- Method
GET
- Response
{
"code": 200,
"status": "OK",
"data": {
"id": 0,
"todo" "cooking at 12pm"
}
- URL
/todos
- Method
POST
- Request Body
todo
asstring
- Response
{
"code": 200,
"status": "OK",
"data": {
"id": 0,
"todo" "cooking at 12pm"
}
- URL
/todos
- Method
PUT
- Request Body
id
asint
todo
asstring
- Response
{
"code": 200,
"status": "OK",
"data": {
"id": 0,
"todo" "cooking at 12pm"
}
- URL
/todos
- Method
DELETE
- Response
{
"code": 200,
"status": "OK",
"data": {
"id": 0,
"todo" "cooking at 12pm"
}