example-data.com

tasks / #125

projectId
projects/16
assigneeUserId
79
title
Refactor database query
description
Dedecor sub vitium.
status
done
priority
normal
dueDate
2026-04-30
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/125"
)
task = res.json()
{
  "id": 125,
  "projectId": 16,
  "assigneeUserId": 79,
  "title": "Refactor database query",
  "description": "Dedecor sub vitium.",
  "status": "done",
  "priority": "normal",
  "dueDate": "2026-04-30",
  "createdAt": "2026-01-15T09:10:08.017Z",
  "updatedAt": "2026-05-03T22:27:12.370Z"
}
Draftbit