example-data.com

tasks / #92

projectId
projects/13
assigneeUserId
44
title
Migrate unit tests
description
Virtus voluptate fugiat depulso clam commodo.
status
in_review
priority
normal
dueDate
2026-06-26
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/92"
)
task = res.json()
{
  "id": 92,
  "projectId": 13,
  "assigneeUserId": 44,
  "title": "Migrate unit tests",
  "description": "Virtus voluptate fugiat depulso clam commodo.",
  "status": "in_review",
  "priority": "normal",
  "dueDate": "2026-06-26",
  "createdAt": "2025-06-05T15:22:55.216Z",
  "updatedAt": "2025-11-27T01:36:13.612Z"
}
Draftbit