example-data.com

tasks / #34

projectId
projects/5
assigneeUserId
126
title
Implement file uploads
description
Truculenter voro harum.
status
todo
priority
normal
dueDate
2026-05-04
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/34"
)
task = res.json()
{
  "id": 34,
  "projectId": 5,
  "assigneeUserId": 126,
  "title": "Implement file uploads",
  "description": "Truculenter voro harum.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-05-04",
  "createdAt": "2025-11-06T14:28:20.739Z",
  "updatedAt": "2026-02-25T01:31:53.674Z"
}
Draftbit