example-data.com

tasks / #58

projectId
projects/9
assigneeUserId
180
title
Optimize user authentication
description
Crur adnuo eos peccatus absum tenetur.
status
done
priority
normal
dueDate
2026-05-15
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/58"
)
task = res.json()
{
  "id": 58,
  "projectId": 9,
  "assigneeUserId": 180,
  "title": "Optimize user authentication",
  "description": "Crur adnuo eos peccatus absum tenetur.",
  "status": "done",
  "priority": "normal",
  "dueDate": "2026-05-15",
  "createdAt": "2025-06-29T01:10:34.680Z",
  "updatedAt": "2025-11-23T03:25:13.796Z"
}
Draftbit