todos
todos
Page 87 of 126.
Overview
-
Plan the tickets
#2065
-
Send the proposal
#2066
-
Read the proposal
#2067
-
Submit the draft
#2068
-
Book the timeline
#2069
-
Read the tickets
#2070
-
Research the dashboard
#2071
-
Update meeting notes
#2072
-
Review the report
#2073
-
Schedule the proposal
#2074
-
Book the checklist
#2075
-
Read the contract
#2076
-
Plan the draft
#2077
-
Buy the presentation
#2078
-
Schedule the dashboard
#2079
-
Follow up with the tickets
#2080
-
Finish meeting notes
#2081
-
Submit the presentation
#2082
-
Complete the contract
#2083
-
Follow up with meeting notes
#2084
-
Update the invoice
#2085
-
Research the dashboard
#2086
-
Follow up with the tickets
#2087
-
Read the timeline
#2088
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": 2065,
"todoListId": 177,
"title": "Plan the tickets",
"isDone": false,
"dueDate": "2026-06-02",
"completedAt": null,
"createdAt": "2026-02-28T15:04:07.941Z",
"updatedAt": "2026-03-21T12:55:38.878Z"
},
{
"id": 2066,
"todoListId": 178,
"title": "Send the proposal",
"isDone": false,
"dueDate": "2026-05-25",
"completedAt": null,
"createdAt": "2025-12-15T17:48:31.997Z",
"updatedAt": "2026-03-21T02:21:52.398Z"
},
{
"id": 2067,
"todoListId": 178,
"title": "Read the proposal",
"isDone": false,
"dueDate": null,
"completedAt": null,
"createdAt": "2025-08-09T03:47:29.849Z",
"updatedAt": "2026-03-10T00:42:27.099Z"
}
],
"meta": {
"page": 87,
"limit": 24,
"total": 3016,
"totalPages": 126
},
"links": {
"self": "/api/v1/todos?page=87&limit=24",
"first": "/api/v1/todos?page=1&limit=24",
"last": "/api/v1/todos?page=126&limit=24",
"next": "/api/v1/todos?page=88&limit=24",
"prev": "/api/v1/todos?page=86&limit=24"
}
}