example-data.com

tasks / #109

projectId
projects/14
assigneeUserId
35
title
Migrate caching layer
description
Verbum desipio bis peior considero umbra.
status
todo
priority
high
dueDate
2026-06-15
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/109"
)
task = res.json()
{
  "id": 109,
  "projectId": 14,
  "assigneeUserId": 35,
  "title": "Migrate caching layer",
  "description": "Verbum desipio bis peior considero umbra.",
  "status": "todo",
  "priority": "high",
  "dueDate": "2026-06-15",
  "createdAt": "2025-07-06T11:12:30.734Z",
  "updatedAt": "2025-11-13T23:44:49.806Z"
}
Draftbit