todos
todos
Page 38 of 126.
Overview
-
Organize the feedback
#889
-
Book the budget
#890
-
Call the proposal
#891
-
Review the client
#892
-
Check the tickets
#893
-
Schedule the draft
#894
-
Research the report
#895
-
Email the team
#896
-
Complete the design
#897
-
Email the design
#898
-
Complete the design
#899
-
Plan the feedback
#900
-
Plan the design
#901
-
Research the tickets
#902
-
Send the budget
#903
-
Organize meeting notes
#904
-
Send the tickets
#905
-
Follow up with the team
#906
-
Prepare meeting notes
#907
-
Organize the contract
#908
-
Call the draft
#909
-
Check the report
#910
-
Check the feedback
#911
-
Review the documentation
#912
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": 889,
"todoListId": 74,
"title": "Organize the feedback",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-07-11T13:32:50.705Z",
"updatedAt": "2026-04-24T15:10:03.185Z"
},
{
"id": 890,
"todoListId": 74,
"title": "Book the budget",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-01-26T21:20:38.154Z",
"updatedAt": "2026-04-07T05:36:57.552Z"
},
{
"id": 891,
"todoListId": 74,
"title": "Call the proposal",
"isDone": true,
"dueDate": null,
"completedAt": "2026-02-10T15:51:52.762Z",
"createdAt": "2025-12-13T14:14:34.583Z",
"updatedAt": "2026-03-29T09:07:29.635Z"
}
],
"meta": {
"page": 38,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=38&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=39&limit=24",
"prev": "/api/v1/todos?page=37&limit=24"
}
}