todos

Simple todo item with title, completion status, due date, priority level, and owner. Used for personal task management, to-do lists, and productivity applications.

🎯 Request Builder

https://api.mockly.codes/todos?page=1&limit=10&count=10
📡

Configure your request and click Send Request to see the response here.

Endpoints

GET/todos

Get a collection of todos

Alternative: /productivity/todos
GET/todos/:id

Get a single todo by ID

Alternative: /productivity/todos/:id
GET/todos/meta

Get resource metadata and schema

Alternative: /productivity/todos/meta

Additional aliases:

/tasks/todo-items
🔍

How to Use Search

The search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.

1. Basic Search

Search across all text fields:

Basic Search
GET https://api.mockly.codes/todos?q=laptop

2. Search Specific Fields

Field-Specific Search
GET https://api.mockly.codes/todos?q=laptop&search_fields=name,description

💡 Pro Tips

  • Search is case-insensitive and performs partial matching
  • Without search_fields, all text fields are searched
  • Combine with pagination to handle large result sets efficiently

Code Examples

JavaScript

Fetch Collection
// Get 10 todos
fetch('https://api.mockly.codes/todos?count=10')
  .then(res => res.json())
  .then(data => console.log(data));

Python

Fetch with Requests
import requests

response = requests.get(
    'https://api.mockly.codes/todos?count=10'
)
data = response.json()

cURL

Command Line
curl "https://api.mockly.codes/todos?count=10"

Bypass Cache

Get Fresh Data
fetch('https://api.mockly.codes/todos?nocache=true')

Schema Properties

idintegerrequired

Unique identifier

Gen:random_int
user_idinteger

Foreign key reference to the user who owns this todo item

Gen:random_int
titlestringrequired

Title or description of the todo item

Gen:sentence
completedbooleanrequired

Whether the todo item has been completed

Gen:boolean
due_datestring

Date and time when the todo item is due

Gen:future_datedate-time
priorityinteger

Priority level from 1 (lowest) to 5 (highest)

Gen:random_int

Query Parameters

countinteger

Number of items to return (default: 10, max: 100)

seedinteger

Seed for reproducible data generation

nocacheboolean

Bypass cache and generate fresh data on every request