The 6D Matrix system helps you categorize, prioritize, and conquer your tasks. Built for developers who demand powerful, flexible task management.
A complete task management API with infinite flexibility and powerful organization.
Organize with Do, Done, Dream, Delegate, Defer, and Don't categories for complete task clarity.
Matrices can contain sub-matrices with unlimited depth. Build complex hierarchies effortlessly.
Three item types with priorities, statuses, due dates, and tags for flexible organization.
Full-text search across items and matrices with filters for type, status, priority, and tags.
Update, complete, or delete multiple items in a single request for maximum efficiency.
Real-time notifications for item and matrix events. Stay in sync with your workflow.
A revolutionary approach to task categorization inspired by productivity science.
Urgent & Important. Tasks requiring immediate action.
Important but not urgent. Assign to others.
Urgent but less important. Schedule for later.
Completed tasks. Your archive of achievements.
Future goals and aspirations. Long-term vision.
Tasks to avoid. Protect your focus.
RESTful endpoints with simple authentication. Include your API key in the X-API-Key header.
Get up and running in seconds with these simple commands.
# Get your API key curl -X POST https://todozi.com/api/register # Create a matrix curl -X POST https://todozi.com/api/matrix \ -H "X-API-Key: YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"name":"Work","category":"do"}' # Add a task curl -X POST https://todozi.com/api/matrix/{id}/task \ -H "X-API-Key: YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{"title":"Ship feature","priority":"high"}' # Get everything curl https://todozi.com/api/list-all -H "X-API-Key: YOUR_KEY"