todos
todos
Page 97 of 126.
Overview
-
Call the tickets
#2305
-
Write the dashboard
#2306
-
Follow up with the draft
#2307
-
Buy the client
#2308
-
Call the backlog
#2309
-
Research the invoice
#2310
-
Read meeting notes
#2311
-
Update the invoice
#2312
-
Review the invoice
#2313
-
Call the presentation
#2314
-
Email the dashboard
#2315
-
Schedule the client
#2316
-
Submit the documentation
#2317
-
Follow up with the timeline
#2318
-
Write the client
#2319
-
Write the checklist
#2320
-
Send the checklist
#2321
-
Update the deliverables
#2322
-
Complete the presentation
#2323
-
Call the dashboard
#2324
-
Send the design
#2325
-
Email the presentation
#2326
-
Read the proposal
#2327
-
Organize the checklist
#2328
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": 2305,
"todoListId": 197,
"title": "Call the tickets",
"isDone": true,
"dueDate": null,
"completedAt": "2025-12-19T17:09:27.441Z",
"createdAt": "2025-09-11T04:28:40.921Z",
"updatedAt": "2025-12-20T23:51:47.348Z"
},
{
"id": 2306,
"todoListId": 197,
"title": "Write the dashboard",
"isDone": false,
"dueDate": "2026-05-28",
"completedAt": null,
"createdAt": "2026-04-14T05:11:51.295Z",
"updatedAt": "2026-05-18T01:59:10.560Z"
},
{
"id": 2307,
"todoListId": 197,
"title": "Follow up with the draft",
"isDone": false,
"dueDate": "2026-05-31",
"completedAt": null,
"createdAt": "2025-05-31T15:37:39.129Z",
"updatedAt": "2025-10-07T21:08:09.141Z"
}
],
"meta": {
"page": 97,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=97&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=98&limit=24",
"prev": "/api/v1/todos?page=96&limit=24"
}
}