example-data.com

tasks / #29

projectId
projects/4
assigneeUserId
191
title
Update UI component
description
Delibero culpa viridis audio exercitationem stella.
status
in_review
priority
normal
dueDate
2026-05-30
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/29"
)
task = res.json()
{
  "id": 29,
  "projectId": 4,
  "assigneeUserId": 191,
  "title": "Update UI component",
  "description": "Delibero culpa viridis audio exercitationem stella.",
  "status": "in_review",
  "priority": "normal",
  "dueDate": "2026-05-30",
  "createdAt": "2026-04-02T00:58:02.953Z",
  "updatedAt": "2026-04-30T14:49:33.143Z"
}
Draftbit