example-data.com

tasks / #492

projectId
projects/61
assigneeUserId
164
title
Test data validation
description
Degero ustulo valens damnatio summisse.
status
done
priority
high
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/492"
)
task = res.json()
{
  "id": 492,
  "projectId": 61,
  "assigneeUserId": 164,
  "title": "Test data validation",
  "description": "Degero ustulo valens damnatio summisse.",
  "status": "done",
  "priority": "high",
  "dueDate": null,
  "createdAt": "2025-06-15T19:37:32.374Z",
  "updatedAt": "2025-08-30T00:12:05.907Z"
}
Draftbit