example-data.com

tasks / #218

projectId
projects/27
assigneeUserId
title
Refactor caching layer
description
Cernuus fugit caste.
status
todo
priority
normal
dueDate
2026-06-29
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/218"
)
task = res.json()
{
  "id": 218,
  "projectId": 27,
  "assigneeUserId": null,
  "title": "Refactor caching layer",
  "description": "Cernuus fugit caste.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-06-29",
  "createdAt": "2026-02-10T13:10:37.823Z",
  "updatedAt": "2026-02-28T15:01:16.423Z"
}
Draftbit