todos
todos
Page 83 of 126.
Overview
-
Buy the proposal
#1969
-
Submit meeting notes
#1970
-
Update the report
#1971
-
Fix the client
#1972
-
Buy the vendor
#1973
-
Read the team
#1974
-
Buy the backlog
#1975
-
Call the report
#1976
-
Fix the budget
#1977
-
Call meeting notes
#1978
-
Plan the budget
#1979
-
Buy the dashboard
#1980
-
Buy the feedback
#1981
-
Read the contract
#1982
-
Follow up with the dashboard
#1983
-
Write the backlog
#1984
-
Review the feedback
#1985
-
Send the budget
#1986
-
Research the checklist
#1987
-
Send the client
#1988
-
Complete the client
#1989
-
Send the backlog
#1990
-
Submit the documentation
#1991
-
Read the backlog
#1992
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": 1969,
"todoListId": 168,
"title": "Buy the proposal",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-11-18T23:18:47.605Z",
"updatedAt": "2026-04-19T13:02:07.073Z"
},
{
"id": 1970,
"todoListId": 168,
"title": "Submit meeting notes",
"isDone": false,
"dueDate": "2026-06-09",
"completedAt": null,
"createdAt": "2025-06-27T10:00:30.400Z",
"updatedAt": "2025-12-26T20:10:40.147Z"
},
{
"id": 1971,
"todoListId": 168,
"title": "Update the report",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-05-31T11:43:41.816Z",
"updatedAt": "2026-03-07T08:49:14.578Z"
}
],
"meta": {
"page": 83,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=83&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=84&limit=24",
"prev": "/api/v1/todos?page=82&limit=24"
}
}