example-data.com

tasks / #191

projectId
projects/24
assigneeUserId
28
title
Configure performance metrics
description
Color voluntarius capillus.
status
in_review
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/191"
)
task = res.json()
{
  "id": 191,
  "projectId": 24,
  "assigneeUserId": 28,
  "title": "Configure performance metrics",
  "description": "Color voluntarius capillus.",
  "status": "in_review",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-10-24T11:20:32.358Z",
  "updatedAt": "2025-11-19T08:11:04.647Z"
}
Draftbit