Optimize pagination
- projectId
- projects/14
- assigneeUserId
- —
- title
- Optimize pagination
- description
- Fugit acidus bos ars libero caput suppono.
- status
- in_progress
- priority
- normal
- dueDate
- 2026-07-02
- createdAt
- updatedAt
Overview
tasks / #105
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/105" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/105" ); 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/105"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/105"
)
task = res.json() Response
{
"id": 105,
"projectId": 14,
"assigneeUserId": null,
"title": "Optimize pagination",
"description": "Fugit acidus bos ars libero caput suppono.",
"status": "in_progress",
"priority": "normal",
"dueDate": "2026-07-02",
"createdAt": "2026-02-07T00:24:11.180Z",
"updatedAt": "2026-02-23T03:52:34.533Z"
}