example-data.com

tasks / #124

projectId
projects/16
assigneeUserId
239
title
Add email notifications
description
Voluptate eaque certus.
status
done
priority
normal
dueDate
2026-06-13
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/124"
)
task = res.json()
{
  "id": 124,
  "projectId": 16,
  "assigneeUserId": 239,
  "title": "Add email notifications",
  "description": "Voluptate eaque certus.",
  "status": "done",
  "priority": "normal",
  "dueDate": "2026-06-13",
  "createdAt": "2025-08-01T10:39:36.388Z",
  "updatedAt": "2025-08-08T21:29:45.735Z"
}
Draftbit