time-entries #548
- userId
-
Jaylon Conroy @jaylon_conroy22
- taskId
- tasks/111
- projectId
- —
- description
- Planning session
- startedAt
- endedAt
- durationMinutes
- 232
- createdAt
Overview
time-entries / #548
#548
#548
Planning session
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/548" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/548" ); const timeEntry = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/time-entries.d.ts https://example-data.com/types/time-entries.d.ts
import type { TimeEntry } from "./types/time-entries";
const res = await fetch(
"https://example-data.com/api/v1/time-entries/548"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/548"
)
time_entrie = res.json() Response
{
"id": 548,
"userId": 205,
"taskId": 111,
"projectId": null,
"description": "Planning session",
"startedAt": "2026-04-01T16:49:29.044Z",
"endedAt": "2026-04-01T20:41:29.044Z",
"durationMinutes": 232,
"createdAt": "2026-04-01T20:41:29.044Z"
}