todos
todos
Page 50 of 126.
Overview
-
Organize the contract
#1177
-
Read the contract
#1178
-
Complete the contract
#1179
-
Check the report
#1180
-
Fix the draft
#1181
-
Finish the dashboard
#1182
-
Check the timeline
#1183
-
Review the vendor
#1184
-
Finish the team
#1185
-
Schedule the client
#1186
-
Review meeting notes
#1187
-
Finish the dashboard
#1188
-
Organize the team
#1189
-
Review the timeline
#1190
-
Check the design
#1191
-
Update the timeline
#1192
-
Submit the proposal
#1193
-
Buy the draft
#1194
-
Book the documentation
#1195
-
Finish the dashboard
#1196
-
Complete the presentation
#1197
-
Email the deliverables
#1198
-
Send the proposal
#1199
-
Call the feedback
#1200
Request
curl example
curl -sS \ "https://example-data.com/api/v1/todos?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/todos?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/todos.d.ts https://example-data.com/types/todos.d.ts
import type { Todo, ListEnvelope } from "./types/todos";
const res = await fetch(
"https://example-data.com/api/v1/todos?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Todo>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/todos",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 1177,
"todoListId": 100,
"title": "Organize the contract",
"isDone": false,
"dueDate": "2026-05-25",
"completedAt": null,
"createdAt": "2025-07-09T07:16:55.805Z",
"updatedAt": "2026-03-22T17:49:17.342Z"
},
{
"id": 1178,
"todoListId": 100,
"title": "Read the contract",
"isDone": true,
"dueDate": null,
"completedAt": "2026-01-24T11:30:20.033Z",
"createdAt": "2025-08-23T09:24:42.913Z",
"updatedAt": "2025-10-01T06:55:05.465Z"
},
{
"id": 1179,
"todoListId": 100,
"title": "Complete the contract",
"isDone": false,
"dueDate": "2026-05-30",
"completedAt": null,
"createdAt": "2026-01-10T18:04:14.789Z",
"updatedAt": "2026-02-26T10:44:11.610Z"
}
],
"meta": {
"page": 50,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=50&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=51&limit=24",
"prev": "/api/v1/todos?page=49&limit=24"
}
}