Review data export
- projectId
- projects/17
- assigneeUserId
-
Norbert Jacobi @norbert_jacobi92
- title
- Review data export
- description
- Aeger depromo animadverto concido provident.
- status
- todo
- priority
- normal
- dueDate
- 2026-07-19
- createdAt
- updatedAt
Overview
tasks / #133
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/133" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/133" ); 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/133"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/133"
)
task = res.json() Response
{
"id": 133,
"projectId": 17,
"assigneeUserId": 101,
"title": "Review data export",
"description": "Aeger depromo animadverto concido provident.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-07-19",
"createdAt": "2026-01-19T12:04:19.757Z",
"updatedAt": "2026-05-16T06:05:31.127Z"
}