example-data.com

tasks / #105

projectId
projects/14
assigneeUserId
title
Optimize pagination
description
Fugit acidus bos ars libero caput suppono.
status
in_progress
priority
normal
dueDate
2026-07-02
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/105"
)
task = res.json()
{
  "id": 105,
  "projectId": 14,
  "assigneeUserId": null,
  "title": "Optimize pagination",
  "description": "Fugit acidus bos ars libero caput suppono.",
  "status": "in_progress",
  "priority": "normal",
  "dueDate": "2026-07-02",
  "createdAt": "2026-02-07T00:24:11.180Z",
  "updatedAt": "2026-02-23T03:52:34.533Z"
}
Draftbit