example-data.com

tasks / #188

projectId
projects/24
assigneeUserId
192
title
Add user authentication
description
Bis caecus uterque sapiente subnecto cur copiose sono victoria.
status
todo
priority
low
dueDate
2026-05-26
createdAt
updatedAt

Component variants

Related

References

Referenced by

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/188"
)
task = res.json()
{
  "id": 188,
  "projectId": 24,
  "assigneeUserId": 192,
  "title": "Add user authentication",
  "description": "Bis caecus uterque sapiente subnecto cur copiose sono victoria.",
  "status": "todo",
  "priority": "low",
  "dueDate": "2026-05-26",
  "createdAt": "2025-07-29T04:37:23.913Z",
  "updatedAt": "2026-04-14T15:14:25.801Z"
}
Draftbit