Optimize database query
- projectId
- projects/33
- assigneeUserId
- —
- title
- Optimize database query
- description
- Cubitum sed ocer vinitor torrens voluptate quibusdam.
- status
- in_progress
- priority
- high
- dueDate
- 2026-08-08
- createdAt
- updatedAt
Overview
tasks / #272
Request
curl example
curl -sS \ "https://example-data.com/api/v1/tasks/272" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/tasks/272" ); 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/272"
);
const task = (await res.json()) as Task; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/tasks/272"
)
task = res.json() Response
{
"id": 272,
"projectId": 33,
"assigneeUserId": null,
"title": "Optimize database query",
"description": "Cubitum sed ocer vinitor torrens voluptate quibusdam.",
"status": "in_progress",
"priority": "high",
"dueDate": "2026-08-08",
"createdAt": "2026-04-16T04:53:46.565Z",
"updatedAt": "2026-05-21T17:22:45.259Z"
}