example-data.com

tasks / #10

projectId
projects/1
assigneeUserId
7
title
Review database query
description
Crinis crur expedita.
status
todo
priority
normal
dueDate
2026-06-04
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/10"
)
task = res.json()
{
  "id": 10,
  "projectId": 1,
  "assigneeUserId": 7,
  "title": "Review database query",
  "description": "Crinis crur expedita.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-06-04",
  "createdAt": "2026-04-15T05:14:22.427Z",
  "updatedAt": "2026-04-21T23:02:23.866Z"
}
Draftbit