example-data.com

tasks / #195

projectId
projects/25
assigneeUserId
232
title
Deploy analytics tracking
description
Commemoro approbo agnitio nulla derelinquo super.
status
blocked
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/195"
)
task = res.json()
{
  "id": 195,
  "projectId": 25,
  "assigneeUserId": 232,
  "title": "Deploy analytics tracking",
  "description": "Commemoro approbo agnitio nulla derelinquo super.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-10-19T15:49:55.997Z",
  "updatedAt": "2026-03-27T15:27:33.426Z"
}
Draftbit