example-data.com

tasks / #324

projectId
projects/39
assigneeUserId
2
title
Deploy performance metrics
description
Creo tribuo magni dedecor hic amplitudo conculco texo curto.
status
in_progress
priority
high
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/324"
)
task = res.json()
{
  "id": 324,
  "projectId": 39,
  "assigneeUserId": 2,
  "title": "Deploy performance metrics",
  "description": "Creo tribuo magni dedecor hic amplitudo conculco texo curto.",
  "status": "in_progress",
  "priority": "high",
  "dueDate": null,
  "createdAt": "2026-05-06T10:39:12.763Z",
  "updatedAt": "2026-05-13T04:52:35.958Z"
}
Draftbit