Organize your tasks and boost your productivity
Loading users...
https://nubbtodoapi.kode4u.tech/apiPOST https://nubbtodoapi.kode4u.tech/api/auth.php
Content-Type: application/json
{
"action": "register",
"username": "testuser",
"password": "testpass123"
}
POST https://nubbtodoapi.kode4u.tech/api/auth.php
Content-Type: application/json
{
"action": "login",
"username": "testuser",
"password": "testpass123"
}
GET https://nubbtodoapi.kode4u.tech/api/todos.php
Authorization: Bearer YOUR_TOKEN_HERE
Content-Type: application/json
GET https://nubbtodoapi.kode4u.tech/api/todos.php?id=1
Authorization: Bearer YOUR_TOKEN_HERE
Content-Type: application/json
POST https://nubbtodoapi.kode4u.tech/api/todos.php
Authorization: Bearer YOUR_TOKEN_HERE
Content-Type: application/json
{
"title": "Complete project documentation",
"description": "Write comprehensive documentation",
"date": "2026-01-15",
"priority": "high"
}
PUT https://nubbtodoapi.kode4u.tech/api/todos.php
Authorization: Bearer YOUR_TOKEN_HERE
Content-Type: application/json
{
"id": 1,
"title": "Updated title",
"description": "Updated description",
"date": "2026-01-18",
"priority": "medium"
}
DELETE https://nubbtodoapi.kode4u.tech/api/todos.php
Authorization: Bearer YOUR_TOKEN_HERE
Content-Type: application/json
{
"id": 1
}
POST https://nubbtodoapi.kode4u.tech/api/todos.php
Authorization: Bearer YOUR_TOKEN_HERE
Content-Type: application/json
{
"title": "Incomplete todo"
}
Note: Replace YOUR_TOKEN_HERE with your actual authentication token received from login/register.