example-data.com
Menu
Browse docs and collections

tasks

tasks

Page 10 of 31.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/tasks?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tasks?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/tasks.d.ts https://example-data.com/types/tasks.d.ts
import type { Task, ListEnvelope } from "./types/tasks";

const res = await fetch(
  "https://example-data.com/api/v1/tasks?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Task>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/tasks",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 217,
      "projectId": 27,
      "assigneeUserId": 101,
      "title": "Update user authentication",
      "description": "Sufficio tempus comparo eveniet.",
      "status": "in_review",
      "priority": "urgent",
      "dueDate": null,
      "createdAt": "2026-04-30T16:02:06.550Z",
      "updatedAt": "2026-05-02T17:25:15.631Z"
    },
    {
      "id": 218,
      "projectId": 27,
      "assigneeUserId": null,
      "title": "Refactor caching layer",
      "description": "Cernuus fugit caste.",
      "status": "todo",
      "priority": "normal",
      "dueDate": "2026-06-29",
      "createdAt": "2026-02-10T13:10:37.823Z",
      "updatedAt": "2026-02-28T15:01:16.423Z"
    },
    {
      "id": 219,
      "projectId": 27,
      "assigneeUserId": 197,
      "title": "Deploy performance metrics",
      "description": "Ea bis auctor caterva viriliter casus at coma thymum.",
      "status": "blocked",
      "priority": "low",
      "dueDate": null,
      "createdAt": "2025-10-24T06:55:04.865Z",
      "updatedAt": "2025-12-02T10:39:28.780Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 723,
    "totalPages": 31
  },
  "links": {
    "self": "/api/v1/tasks?page=10&limit=24",
    "first": "/api/v1/tasks?page=1&limit=24",
    "last": "/api/v1/tasks?page=31&limit=24",
    "next": "/api/v1/tasks?page=11&limit=24",
    "prev": "/api/v1/tasks?page=9&limit=24"
  }
}