Implement performance metrics
- projectId
- projects/14
- assigneeUserId
- —
- title
- Implement performance metrics
- description
- Vestigium bibo ipsam apostolus votum ager.
- status
- done
- priority
- normal
- dueDate
- 2026-08-13
- createdAt
- updatedAt
Overview
tasks / #106
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/106" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/106" ); 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/106"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/106"
)
task = res.json() Response
{
"id": 106,
"projectId": 14,
"assigneeUserId": null,
"title": "Implement performance metrics",
"description": "Vestigium bibo ipsam apostolus votum ager.",
"status": "done",
"priority": "normal",
"dueDate": "2026-08-13",
"createdAt": "2025-06-08T01:51:41.187Z",
"updatedAt": "2025-10-07T22:45:04.326Z"
}