Document caching layer
- projectId
- projects/78
- assigneeUserId
-
Michaela Feeney @michaela_feeney46
- title
- Document caching layer
- description
- Tepesco dapifer comburo.
- status
- todo
- priority
- low
- dueDate
- 2026-06-14
- createdAt
- updatedAt
Overview
tasks / #650
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/650" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/650" ); 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/650"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/650"
)
task = res.json() Response
{
"id": 650,
"projectId": 78,
"assigneeUserId": 87,
"title": "Document caching layer",
"description": "Tepesco dapifer comburo.",
"status": "todo",
"priority": "low",
"dueDate": "2026-06-14",
"createdAt": "2025-12-11T16:08:05.016Z",
"updatedAt": "2026-04-13T15:44:10.016Z"
}