Investigate pagination
- projectId
- projects/52
- assigneeUserId
-
Wilton Dietrich @wilton.dietrich23
- title
- Investigate pagination
- description
- Asper desino ante.
- status
- todo
- priority
- normal
- dueDate
- 2026-06-14
- createdAt
- updatedAt
Overview
tasks / #431
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/431" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/431" ); 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/431"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/431"
)
task = res.json() Response
{
"id": 431,
"projectId": 52,
"assigneeUserId": 190,
"title": "Investigate pagination",
"description": "Asper desino ante.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-06-14",
"createdAt": "2025-12-22T04:45:22.263Z",
"updatedAt": "2026-01-10T23:54:12.886Z"
}