example-data.com
Menu
Browse docs and collections

tasks

tasks

Page 18 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": 409,
      "projectId": 49,
      "assigneeUserId": 15,
      "title": "Integrate role-based access",
      "description": "Ipsum aequus cras similique allatus acies asperiores natus.",
      "status": "in_review",
      "priority": "normal",
      "dueDate": "2026-05-14",
      "createdAt": "2025-11-07T12:27:04.741Z",
      "updatedAt": "2026-02-15T20:02:11.309Z"
    },
    {
      "id": 410,
      "projectId": 49,
      "assigneeUserId": 186,
      "title": "Review logging",
      "description": "Consectetur vinculum utor quam.",
      "status": "blocked",
      "priority": "normal",
      "dueDate": "2026-05-01",
      "createdAt": "2025-09-30T16:53:07.929Z",
      "updatedAt": "2026-03-18T16:27:24.464Z"
    },
    {
      "id": 411,
      "projectId": 49,
      "assigneeUserId": 186,
      "title": "Refactor email notifications",
      "description": "Paulatim trans damno arcus aliqua versus vitiosus curto quod.",
      "status": "in_review",
      "priority": "normal",
      "dueDate": "2026-06-16",
      "createdAt": "2026-05-21T13:22:28.460Z",
      "updatedAt": "2026-05-21T17:48:20.240Z"
    }
  ],
  "meta": {
    "page": 18,
    "limit": 24,
    "total": 723,
    "totalPages": 31
  },
  "links": {
    "self": "/api/v1/tasks?page=18&limit=24",
    "first": "/api/v1/tasks?page=1&limit=24",
    "last": "/api/v1/tasks?page=31&limit=24",
    "next": "/api/v1/tasks?page=19&limit=24",
    "prev": "/api/v1/tasks?page=17&limit=24"
  }
}