example-data.com

tasks / #663

projectId
projects/80
assigneeUserId
title
Update error handling
description
Rerum paens angulus.
status
todo
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/663"
)
task = res.json()
{
  "id": 663,
  "projectId": 80,
  "assigneeUserId": null,
  "title": "Update error handling",
  "description": "Rerum paens angulus.",
  "status": "todo",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-08-16T10:45:00.723Z",
  "updatedAt": "2026-04-17T01:21:10.575Z"
}
Draftbit