example-data.com

tasks / #88

projectId
projects/13
assigneeUserId
214
title
Refactor file uploads
description
Vestigium ciminatio molestiae accommodo vulpes vita.
status
in_progress
priority
high
dueDate
2026-04-30
createdAt
updatedAt

Component variants

Related

References

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

res = requests.get(
    "https://example-data.com/api/v1/tasks/88"
)
task = res.json()
{
  "id": 88,
  "projectId": 13,
  "assigneeUserId": 214,
  "title": "Refactor file uploads",
  "description": "Vestigium ciminatio molestiae accommodo vulpes vita.",
  "status": "in_progress",
  "priority": "high",
  "dueDate": "2026-04-30",
  "createdAt": "2026-02-08T13:10:15.398Z",
  "updatedAt": "2026-05-17T23:46:51.208Z"
}
Draftbit