example-data.com

tasks / #71

projectId
projects/11
assigneeUserId
title
Optimize file uploads
description
Virgo voveo cohaero cetera caput commodo demergo desipio sed absum.
status
blocked
priority
normal
dueDate
2026-07-29
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/71"
)
task = res.json()
{
  "id": 71,
  "projectId": 11,
  "assigneeUserId": null,
  "title": "Optimize file uploads",
  "description": "Virgo voveo cohaero cetera caput commodo demergo desipio sed absum.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": "2026-07-29",
  "createdAt": "2025-12-20T10:13:30.781Z",
  "updatedAt": "2026-05-02T16:35:41.401Z"
}
Draftbit