Review database query
- projectId
- projects/1
- assigneeUserId
-
Einar Volkman @einar_volkman69
- title
- Review database query
- description
- Crinis crur expedita.
- status
- todo
- priority
- normal
- dueDate
- 2026-06-04
- createdAt
- updatedAt
Overview
tasks / #10
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/10" ); 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/10"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/10"
)
task = res.json() Response
{
"id": 10,
"projectId": 1,
"assigneeUserId": 7,
"title": "Review database query",
"description": "Crinis crur expedita.",
"status": "todo",
"priority": "normal",
"dueDate": "2026-06-04",
"createdAt": "2026-04-15T05:14:22.427Z",
"updatedAt": "2026-04-21T23:02:23.866Z"
}