todos
todos
Page 81 of 126.
Overview
-
Email the team
#1921
-
Read the invoice
#1922
-
Call the contract
#1923
-
Call the feedback
#1924
-
Complete the budget
#1925
-
Book the client
#1926
-
Submit the documentation
#1927
-
Update the invoice
#1928
-
Plan the team
#1929
-
Prepare the draft
#1930
-
Review the budget
#1931
-
Prepare the budget
#1932
-
Plan the presentation
#1933
-
Follow up with the budget
#1934
-
Book the feedback
#1935
-
Follow up with the timeline
#1936
-
Book the report
#1937
-
Submit meeting notes
#1938
-
Submit the documentation
#1939
-
Buy the team
#1940
-
Prepare the presentation
#1941
-
Organize the tickets
#1942
-
Write the timeline
#1943
-
Research meeting notes
#1944
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": 1921,
"todoListId": 161,
"title": "Email the team",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-10-15T10:56:43.259Z",
"updatedAt": "2025-11-24T21:26:50.369Z"
},
{
"id": 1922,
"todoListId": 161,
"title": "Read the invoice",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2026-04-06T14:53:14.514Z",
"updatedAt": "2026-05-11T07:43:53.588Z"
},
{
"id": 1923,
"todoListId": 161,
"title": "Call the contract",
"isDone": false,
"dueDate": "2026-06-16",
"completedAt": null,
"createdAt": "2025-07-12T17:39:11.700Z",
"updatedAt": "2025-12-09T04:59:00.854Z"
}
],
"meta": {
"page": 81,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=81&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=82&limit=24",
"prev": "/api/v1/todos?page=80&limit=24"
}
}