Integrate UI component
- projectId
- projects/81
- assigneeUserId
- —
- title
- Integrate UI component
- description
- Quae terra statua abscido.
- status
- in_progress
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #674
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/674" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/674" ); 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/674"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/674"
)
task = res.json() Response
{
"id": 674,
"projectId": 81,
"assigneeUserId": null,
"title": "Integrate UI component",
"description": "Quae terra statua abscido.",
"status": "in_progress",
"priority": "high",
"dueDate": null,
"createdAt": "2025-05-25T21:18:06.308Z",
"updatedAt": "2025-12-05T20:47:57.393Z"
}