example-data.com

tasks / #77

projectId
projects/11
assigneeUserId
216
title
Document user authentication
description
Concido blanditiis ventito aestus.
status
todo
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/77"
)
task = res.json()
{
  "id": 77,
  "projectId": 11,
  "assigneeUserId": 216,
  "title": "Document user authentication",
  "description": "Concido blanditiis ventito aestus.",
  "status": "todo",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2026-04-24T08:59:35.804Z",
  "updatedAt": "2026-04-27T16:46:05.688Z"
}
Draftbit