example-data.com

tasks / #170

projectId
projects/22
assigneeUserId
106
title
Review email notifications
description
Ambulo curto clarus ut pariatur arma tersus vobis tempus harum.
status
todo
priority
normal
dueDate
2026-06-10
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/170"
)
task = res.json()
{
  "id": 170,
  "projectId": 22,
  "assigneeUserId": 106,
  "title": "Review email notifications",
  "description": "Ambulo curto clarus ut pariatur arma tersus vobis tempus harum.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-06-10",
  "createdAt": "2025-06-04T12:32:38.716Z",
  "updatedAt": "2025-10-31T00:04:38.429Z"
}
Draftbit