example-data.com

tasks / #127

projectId
projects/16
assigneeUserId
199
title
Document UI component
description
Tabgo culpo advenio adflicto vulpes supplanto depereo celo viscus taceo.
status
todo
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/127"
)
task = res.json()
{
  "id": 127,
  "projectId": 16,
  "assigneeUserId": 199,
  "title": "Document UI component",
  "description": "Tabgo culpo advenio adflicto vulpes supplanto depereo celo viscus taceo.",
  "status": "todo",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2026-05-09T15:02:56.160Z",
  "updatedAt": "2026-05-13T00:09:31.844Z"
}
Draftbit