Fix performance metrics
- projectId
- projects/82
- assigneeUserId
- —
- title
- Fix performance metrics
- description
- Magnam vigilo demitto statim cognomen.
- status
- done
- priority
- low
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #690
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/690" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/690" ); 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/690"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/690"
)
task = res.json() Response
{
"id": 690,
"projectId": 82,
"assigneeUserId": null,
"title": "Fix performance metrics",
"description": "Magnam vigilo demitto statim cognomen.",
"status": "done",
"priority": "low",
"dueDate": null,
"createdAt": "2025-09-03T12:58:15.347Z",
"updatedAt": "2025-11-11T09:02:37.671Z"
}