example-data.com

tasks / #154

projectId
projects/20
assigneeUserId
25
title
Implement performance metrics
description
Suppellex tunc aliquam cupiditate suggero.
status
todo
priority
high
dueDate
2026-08-18
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/154"
)
task = res.json()
{
  "id": 154,
  "projectId": 20,
  "assigneeUserId": 25,
  "title": "Implement performance metrics",
  "description": "Suppellex tunc aliquam cupiditate suggero.",
  "status": "todo",
  "priority": "high",
  "dueDate": "2026-08-18",
  "createdAt": "2025-12-21T03:22:07.362Z",
  "updatedAt": "2026-01-12T09:30:47.847Z"
}
Draftbit