todos
todos
Page 13 of 126.
Overview
-
Organize the design
#289
-
Write the documentation
#290
-
Call the team
#291
-
Update the invoice
#292
-
Submit the proposal
#293
-
Research the tickets
#294
-
Read the budget
#295
-
Buy the checklist
#296
-
Buy the tickets
#297
-
Call the checklist
#298
-
Update the draft
#299
-
Review the backlog
#300
-
Check the documentation
#301
-
Submit the report
#302
-
Follow up with the proposal
#303
-
Send the invoice
#304
-
Research the timeline
#305
-
Buy the vendor
#306
-
Book the dashboard
#307
-
Fix the dashboard
#308
-
Review the checklist
#309
-
Schedule the presentation
#310
-
Call the report
#311
-
Prepare the documentation
#312
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": 289,
"todoListId": 24,
"title": "Organize the design",
"isDone": true,
"dueDate": null,
"completedAt": "2025-12-06T04:54:00.489Z",
"createdAt": "2025-11-25T07:41:14.790Z",
"updatedAt": "2026-01-21T18:49:01.408Z"
},
{
"id": 290,
"todoListId": 24,
"title": "Write the documentation",
"isDone": false,
"dueDate": "2026-05-18",
"completedAt": null,
"createdAt": "2026-05-02T16:23:44.862Z",
"updatedAt": "2026-05-13T14:21:14.152Z"
},
{
"id": 291,
"todoListId": 24,
"title": "Call the team",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-05-08T22:28:38.219Z",
"updatedAt": "2026-05-18T18:28:25.946Z"
}
],
"meta": {
"page": 13,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=13&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=14&limit=24",
"prev": "/api/v1/todos?page=12&limit=24"
}
}