Test UI component
- projectId
- projects/61
- assigneeUserId
- —
- title
- Test UI component
- description
- Beatae arcesso decor condico libero peccatus video vorago vulgivagus conscendo.
- status
- done
- priority
- normal
- dueDate
- 2026-07-15
- createdAt
- updatedAt
Overview
tasks / #491
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/491" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/491" ); 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/491"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/491"
)
task = res.json() Response
{
"id": 491,
"projectId": 61,
"assigneeUserId": null,
"title": "Test UI component",
"description": "Beatae arcesso decor condico libero peccatus video vorago vulgivagus conscendo.",
"status": "done",
"priority": "normal",
"dueDate": "2026-07-15",
"createdAt": "2025-09-15T12:06:13.140Z",
"updatedAt": "2026-03-11T18:42:01.343Z"
}