Investigate API endpoint
- projectId
- projects/81
- assigneeUserId
-
Douglas Frami @douglas.frami
- title
- Investigate API endpoint
- description
- Et versus vindico eaque.
- status
- blocked
- priority
- normal
- dueDate
- 2026-06-19
- createdAt
- updatedAt
Overview
tasks / #673
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/673" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/673" ); 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/673"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/673"
)
task = res.json() Response
{
"id": 673,
"projectId": 81,
"assigneeUserId": 148,
"title": "Investigate API endpoint",
"description": "Et versus vindico eaque.",
"status": "blocked",
"priority": "normal",
"dueDate": "2026-06-19",
"createdAt": "2025-11-07T22:23:20.145Z",
"updatedAt": "2026-05-11T22:58:02.227Z"
}