example-data.com

tasks / #644

projectId
projects/78
assigneeUserId
192
title
Integrate pagination
description
Cui volva denique.
status
in_review
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

curl -sS \
  "https://example-data.com/api/v1/tasks/644" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/tasks/644"
);
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/644"
);
const task = (await res.json()) as Task;
import requests

res = requests.get(
    "https://example-data.com/api/v1/tasks/644"
)
task = res.json()
{
  "id": 644,
  "projectId": 78,
  "assigneeUserId": 192,
  "title": "Integrate pagination",
  "description": "Cui volva denique.",
  "status": "in_review",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2026-05-03T13:45:22.295Z",
  "updatedAt": "2026-05-15T21:04:12.027Z"
}
Draftbit