Migrate pagination
- projectId
- projects/10
- assigneeUserId
- —
- title
- Migrate pagination
- description
- Thermae auditor comptus vigor adfectus videlicet alias vilis absum.
- status
- todo
- priority
- high
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #65
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/65" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/65" ); 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/65"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/65"
)
task = res.json() Response
{
"id": 65,
"projectId": 10,
"assigneeUserId": null,
"title": "Migrate pagination",
"description": "Thermae auditor comptus vigor adfectus videlicet alias vilis absum.",
"status": "todo",
"priority": "high",
"dueDate": null,
"createdAt": "2025-09-04T00:57:10.425Z",
"updatedAt": "2025-11-12T15:38:21.020Z"
}