Fix caching layer
- projectId
- projects/16
- assigneeUserId
- —
- title
- Fix caching layer
- description
- Tantillus volup asper.
- status
- in_progress
- priority
- low
- dueDate
- 2026-05-15
- createdAt
- updatedAt
Overview
tasks / #128
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/128" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/128" ); const task = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/tasks.d.ts https://example-data.com/types/tasks.d.ts
import type { Task } from "./types/tasks";
const res = await fetch(
"https://example-data.com/api/v1/tasks/128"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/128"
)
task = res.json() Response
{
"id": 128,
"projectId": 16,
"assigneeUserId": null,
"title": "Fix caching layer",
"description": "Tantillus volup asper.",
"status": "in_progress",
"priority": "low",
"dueDate": "2026-05-15",
"createdAt": "2025-11-13T09:54:35.432Z",
"updatedAt": "2026-05-16T07:03:08.416Z"
}