todos
todos
Page 82 of 126.
Overview
-
Call the invoice
#1945
-
Complete the client
#1946
-
Finish the proposal
#1947
-
Finish the vendor
#1948
-
Prepare the budget
#1949
-
Prepare the timeline
#1950
-
Read the timeline
#1951
-
Buy the feedback
#1952
-
Finish the deliverables
#1953
-
Plan the team
#1954
-
Email the client
#1955
-
Complete the draft
#1956
-
Finish the documentation
#1957
-
Email the team
#1958
-
Complete the presentation
#1959
-
Email the draft
#1960
-
Send the checklist
#1961
-
Plan the presentation
#1962
-
Call the deliverables
#1963
-
Submit the client
#1964
-
Check the draft
#1965
-
Email the budget
#1966
-
Fix the contract
#1967
-
Check the budget
#1968
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": 1945,
"todoListId": 164,
"title": "Call the invoice",
"isDone": false,
"dueDate": "2026-06-05",
"completedAt": null,
"createdAt": "2026-05-09T07:25:28.862Z",
"updatedAt": "2026-05-17T21:17:13.644Z"
},
{
"id": 1946,
"todoListId": 164,
"title": "Complete the client",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-01-01T20:50:33.249Z",
"updatedAt": "2026-01-25T03:47:11.739Z"
},
{
"id": 1947,
"todoListId": 164,
"title": "Finish the proposal",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-12-12T22:11:37.674Z",
"updatedAt": "2026-05-20T16:05:07.825Z"
}
],
"meta": {
"page": 82,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=82&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=83&limit=24",
"prev": "/api/v1/todos?page=81&limit=24"
}
}