example-data.com
Menu
Browse docs and collections

tasks

tasks

Page 3 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": 49,
      "projectId": 7,
      "assigneeUserId": 13,
      "title": "Add analytics tracking",
      "description": "Autem angustus arca volo tremo cibo ventosus adaugeo pecto.",
      "status": "todo",
      "priority": "normal",
      "dueDate": null,
      "createdAt": "2025-08-11T15:44:49.028Z",
      "updatedAt": "2026-01-18T17:54:26.849Z"
    },
    {
      "id": 50,
      "projectId": 7,
      "assigneeUserId": 133,
      "title": "Test dashboard widget",
      "description": "Desipio coma laborum terreo chirographum solvo viridis depromo solium trepide.",
      "status": "done",
      "priority": "normal",
      "dueDate": "2026-07-21",
      "createdAt": "2025-11-27T18:29:34.756Z",
      "updatedAt": "2026-02-28T03:24:54.200Z"
    },
    {
      "id": 51,
      "projectId": 8,
      "assigneeUserId": 175,
      "title": "Implement database query",
      "description": "Decor temptatio celo cupiditate delibero cibus teneo.",
      "status": "in_review",
      "priority": "normal",
      "dueDate": "2026-07-16",
      "createdAt": "2025-10-01T09:20:17.127Z",
      "updatedAt": "2026-05-04T10:16:43.164Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 723,
    "totalPages": 31
  },
  "links": {
    "self": "/api/v1/tasks?page=3&limit=24",
    "first": "/api/v1/tasks?page=1&limit=24",
    "last": "/api/v1/tasks?page=31&limit=24",
    "next": "/api/v1/tasks?page=4&limit=24",
    "prev": "/api/v1/tasks?page=2&limit=24"
  }
}