Test pagination
- projectId
- projects/82
- assigneeUserId
-
Cindy Barrows @cindy_barrows20
- title
- Test pagination
- description
- Adulatio aegrus delectatio.
- status
- in_review
- priority
- high
- dueDate
- 2026-08-14
- createdAt
- updatedAt
Overview
tasks / #695
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/695" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/695" ); 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/695"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/695"
)
task = res.json() Response
{
"id": 695,
"projectId": 82,
"assigneeUserId": 165,
"title": "Test pagination",
"description": "Adulatio aegrus delectatio.",
"status": "in_review",
"priority": "high",
"dueDate": "2026-08-14",
"createdAt": "2025-07-02T08:38:19.617Z",
"updatedAt": "2026-03-07T06:43:01.131Z"
}