example-data.com

tasks / #128

projectId
projects/16
assigneeUserId
title
Fix caching layer
description
Tantillus volup asper.
status
in_progress
priority
low
dueDate
2026-05-15
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/128"
)
task = res.json()
{
  "id": 128,
  "projectId": 16,
  "assigneeUserId": null,
  "title": "Fix caching layer",
  "description": "Tantillus volup asper.",
  "status": "in_progress",
  "priority": "low",
  "dueDate": "2026-05-15",
  "createdAt": "2025-11-13T09:54:35.432Z",
  "updatedAt": "2026-05-16T07:03:08.416Z"
}
Draftbit