todos
todos
Page 94 of 126.
Overview
-
Prepare the checklist
#2233
-
Complete the report
#2234
-
Write the invoice
#2235
-
Complete the team
#2236
-
Prepare the checklist
#2237
-
Plan the deliverables
#2238
-
Call the vendor
#2239
-
Fix the client
#2240
-
Email the timeline
#2241
-
Complete the report
#2242
-
Submit the proposal
#2243
-
Finish the report
#2244
-
Schedule the report
#2245
-
Buy the team
#2246
-
Fix the backlog
#2247
-
Check the timeline
#2248
-
Prepare the invoice
#2249
-
Research the vendor
#2250
-
Write the documentation
#2251
-
Send the team
#2252
-
Schedule the vendor
#2253
-
Finish the deliverables
#2254
-
Plan the tickets
#2255
-
Complete the timeline
#2256
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": 2233,
"todoListId": 190,
"title": "Prepare the checklist",
"isDone": true,
"dueDate": null,
"completedAt": "2026-05-04T01:39:40.603Z",
"createdAt": "2026-02-01T12:28:37.767Z",
"updatedAt": "2026-03-02T04:21:23.020Z"
},
{
"id": 2234,
"todoListId": 190,
"title": "Complete the report",
"isDone": false,
"dueDate": "2026-06-07",
"completedAt": null,
"createdAt": "2026-02-10T01:42:21.531Z",
"updatedAt": "2026-02-10T16:09:21.969Z"
},
{
"id": 2235,
"todoListId": 190,
"title": "Write the invoice",
"isDone": false,
"dueDate": "2026-06-03",
"completedAt": null,
"createdAt": "2025-07-16T00:28:03.727Z",
"updatedAt": "2025-08-17T14:18:28.064Z"
}
],
"meta": {
"page": 94,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=94&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=95&limit=24",
"prev": "/api/v1/todos?page=93&limit=24"
}
}