Document caching layer
- projectId
- projects/43
- assigneeUserId
- —
- title
- Document caching layer
- description
- Verbum tertius sunt.
- status
- blocked
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #364
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/364" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/364" ); 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/364"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/364"
)
task = res.json() Response
{
"id": 364,
"projectId": 43,
"assigneeUserId": null,
"title": "Document caching layer",
"description": "Verbum tertius sunt.",
"status": "blocked",
"priority": "urgent",
"dueDate": null,
"createdAt": "2025-10-06T03:13:20.446Z",
"updatedAt": "2025-11-22T20:55:11.978Z"
}