example-data.com

tasks / #95

projectId
projects/13
assigneeUserId
203
title
Review file uploads
description
Solvo cernuus clibanus volutabrum tracto ventus terreo aer comis dapifer.
status
todo
priority
urgent
dueDate
2026-05-19
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/95"
)
task = res.json()
{
  "id": 95,
  "projectId": 13,
  "assigneeUserId": 203,
  "title": "Review file uploads",
  "description": "Solvo cernuus clibanus volutabrum tracto ventus terreo aer comis dapifer.",
  "status": "todo",
  "priority": "urgent",
  "dueDate": "2026-05-19",
  "createdAt": "2025-06-21T10:37:53.719Z",
  "updatedAt": "2025-10-24T00:38:47.903Z"
}
Draftbit