example-data.com

tasks / #15

projectId
projects/2
assigneeUserId
title
Fix pagination
description
Advenio vivo vel spiritus audax aspernatur aequus.
status
in_progress
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

curl -sS \
  "https://example-data.com/api/v1/tasks/15" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tasks/15"
);
const task = await res.json();
import type { Task } from "https://example-data.com/types/tasks.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/tasks/15"
);
const task = (await res.json()) as Task;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tasks/15"
)
task = res.json()
{
  "id": 15,
  "projectId": 2,
  "assigneeUserId": null,
  "title": "Fix pagination",
  "description": "Advenio vivo vel spiritus audax aspernatur aequus.",
  "status": "in_progress",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2026-02-26T11:00:27.766Z",
  "updatedAt": "2026-05-18T09:46:42.308Z"
}
Draftbit