time-entries #104
- userId
-
Karlee Hudson-Turner @karlee.hudson-turner88
- taskId
- —
- projectId
- projects/39
- description
- Planning session
- startedAt
- endedAt
- durationMinutes
- 321
- createdAt
Overview
time-entries / #104
#104
#104
Planning session
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/104" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/104" ); 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/104"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/104"
)
time_entrie = res.json() Response
{
"id": 104,
"userId": 36,
"taskId": null,
"projectId": 39,
"description": "Planning session",
"startedAt": "2026-05-15T08:12:36.753Z",
"endedAt": "2026-05-15T13:33:36.753Z",
"durationMinutes": 321,
"createdAt": "2026-05-15T13:33:36.753Z"
}