example-data.com

tasks / #660

projectId
projects/79
assigneeUserId
166
title
Review data export
description
Audax usitas necessitatibus corroboro audio defendo.
status
todo
priority
normal
dueDate
2026-07-27
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/660"
)
task = res.json()
{
  "id": 660,
  "projectId": 79,
  "assigneeUserId": 166,
  "title": "Review data export",
  "description": "Audax usitas necessitatibus corroboro audio defendo.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-07-27",
  "createdAt": "2025-06-06T17:27:05.038Z",
  "updatedAt": "2026-02-02T03:13:52.222Z"
}
Draftbit