todos
todos
Page 98 of 126.
Overview
-
Check the documentation
#2329
-
Read the proposal
#2330
-
Submit the contract
#2331
-
Fix the proposal
#2332
-
Buy the team
#2333
-
Send the feedback
#2334
-
Organize the feedback
#2335
-
Update the tickets
#2336
-
Update the client
#2337
-
Email the tickets
#2338
-
Buy the backlog
#2339
-
Organize the budget
#2340
-
Send the proposal
#2341
-
Plan the budget
#2342
-
Email the contract
#2343
-
Check the feedback
#2344
-
Submit the backlog
#2345
-
Check the feedback
#2346
-
Follow up with meeting notes
#2347
-
Organize the report
#2348
-
Read the documentation
#2349
-
Fix meeting notes
#2350
-
Submit the vendor
#2351
-
Review the draft
#2352
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": 2329,
"todoListId": 198,
"title": "Check the documentation",
"isDone": true,
"dueDate": "2026-06-13",
"completedAt": "2025-08-15T08:27:28.279Z",
"createdAt": "2025-06-05T11:23:13.996Z",
"updatedAt": "2025-10-07T11:33:06.133Z"
},
{
"id": 2330,
"todoListId": 198,
"title": "Read the proposal",
"isDone": true,
"dueDate": "2026-06-18",
"completedAt": "2026-05-21T14:49:09.346Z",
"createdAt": "2026-05-19T21:46:43.504Z",
"updatedAt": "2026-05-21T01:22:08.793Z"
},
{
"id": 2331,
"todoListId": 198,
"title": "Submit the contract",
"isDone": false,
"dueDate": "2026-05-15",
"completedAt": null,
"createdAt": "2025-12-13T21:03:23.936Z",
"updatedAt": "2026-02-26T01:08:28.487Z"
}
],
"meta": {
"page": 98,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=98&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=99&limit=24",
"prev": "/api/v1/todos?page=97&limit=24"
}
}