example-data.com

tasks / #51

projectId
projects/8
assigneeUserId
175
title
Implement database query
description
Decor temptatio celo cupiditate delibero cibus teneo.
status
in_review
priority
normal
dueDate
2026-07-16
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/51"
)
task = res.json()
{
  "id": 51,
  "projectId": 8,
  "assigneeUserId": 175,
  "title": "Implement database query",
  "description": "Decor temptatio celo cupiditate delibero cibus teneo.",
  "status": "in_review",
  "priority": "normal",
  "dueDate": "2026-07-16",
  "createdAt": "2025-10-01T09:20:17.127Z",
  "updatedAt": "2026-05-04T10:16:43.164Z"
}
Draftbit