time-entries #592
- userId
-
Loren Schmidt @loren_schmidt
- taskId
- tasks/99
- projectId
- —
- description
- UI component work
- startedAt
- endedAt
- durationMinutes
- 330
- createdAt
Overview
time-entries / #592
#592
#592
UI component work
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/592" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/592" ); 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/592"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/592"
)
time_entrie = res.json() Response
{
"id": 592,
"userId": 222,
"taskId": 99,
"projectId": null,
"description": "UI component work",
"startedAt": "2026-01-16T16:09:08.047Z",
"endedAt": "2026-01-16T21:39:08.047Z",
"durationMinutes": 330,
"createdAt": "2026-01-16T21:39:08.047Z"
}