Investigate pagination
- projectId
- projects/54
- assigneeUserId
-
Ruben Terry @ruben.terry
- title
- Investigate pagination
- description
- Tam tristis constans.
- status
- todo
- priority
- normal
- dueDate
- 2026-05-01
- createdAt
- updatedAt
Overview
tasks / #439
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/439" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/439" ); 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/439"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/439"
)
task = res.json() Response
{
"id": 439,
"projectId": 54,
"assigneeUserId": 91,
"title": "Investigate pagination",
"description": "Tam tristis constans.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-05-01",
"createdAt": "2025-11-20T11:48:32.573Z",
"updatedAt": "2026-03-24T22:27:12.561Z"
}