Integrate database query
- projectId
- projects/67
- assigneeUserId
- —
- title
- Integrate database query
- description
- Crur tunc temptatio.
- status
- in_review
- priority
- urgent
- dueDate
- —
- createdAt
- updatedAt
Overview
tasks / #544
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/544" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/544" ); 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/544"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/544"
)
task = res.json() Response
{
"id": 544,
"projectId": 67,
"assigneeUserId": null,
"title": "Integrate database query",
"description": "Crur tunc temptatio.",
"status": "in_review",
"priority": "urgent",
"dueDate": null,
"createdAt": "2025-09-02T09:55:38.938Z",
"updatedAt": "2026-01-09T06:34:46.487Z"
}