Integrate caching layer
- projectId
- projects/83
- assigneeUserId
-
Eveline Emard @eveline.emard
- title
- Integrate caching layer
- description
- Vulnus volutabrum solio itaque.
- status
- in_progress
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #705
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/705" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/705" ); 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/705"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/705"
)
task = res.json() Response
{
"id": 705,
"projectId": 83,
"assigneeUserId": 118,
"title": "Integrate caching layer",
"description": "Vulnus volutabrum solio itaque.",
"status": "in_progress",
"priority": "high",
"dueDate": null,
"createdAt": "2026-02-15T07:31:37.997Z",
"updatedAt": "2026-05-21T23:25:01.659Z"
}