example-data.com

tasks / #141

projectId
projects/19
assigneeUserId
title
Deploy data validation
description
Libero damnatio amoveo ulciscor.
status
in_progress
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/141"
)
task = res.json()
{
  "id": 141,
  "projectId": 19,
  "assigneeUserId": null,
  "title": "Deploy data validation",
  "description": "Libero damnatio amoveo ulciscor.",
  "status": "in_progress",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-06-23T13:02:46.566Z",
  "updatedAt": "2025-12-06T04:45:09.793Z"
}
Draftbit