example-data.com
Menu
Browse docs and collections

todos

todos

Page 5 of 126.

Overview

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": 97,
      "todoListId": 7,
      "title": "Submit the design",
      "isDone": false,
      "dueDate": null,
      "completedAt": null,
      "createdAt": "2025-08-10T17:07:31.070Z",
      "updatedAt": "2026-02-02T08:51:56.463Z"
    },
    {
      "id": 98,
      "todoListId": 7,
      "title": "Schedule the vendor",
      "isDone": false,
      "dueDate": "2026-06-21",
      "completedAt": null,
      "createdAt": "2026-04-20T05:24:33.506Z",
      "updatedAt": "2026-04-26T02:45:32.181Z"
    },
    {
      "id": 99,
      "todoListId": 8,
      "title": "Call the backlog",
      "isDone": true,
      "dueDate": null,
      "completedAt": "2025-11-26T05:20:47.116Z",
      "createdAt": "2025-09-21T10:31:52.466Z",
      "updatedAt": "2025-11-21T17:17:09.105Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 3016,
    "totalPages": 126
  },
  "links": {
    "self": "/api/v1/todos?page=5&limit=24",
    "first": "/api/v1/todos?page=1&limit=24",
    "last": "/api/v1/todos?page=126&limit=24",
    "next": "/api/v1/todos?page=6&limit=24",
    "prev": "/api/v1/todos?page=4&limit=24"
  }
}