time-entries #319
- userId
-
Sam Hegmann-Jast @sam_hegmann-jast86
- taskId
- tasks/73
- projectId
- —
- description
- Documentation update
- startedAt
- endedAt
- durationMinutes
- 103
- createdAt
Overview
time-entries / #319
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/319" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/319" ); 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/319"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/319"
)
time_entrie = res.json() Response
{
"id": 319,
"userId": 114,
"taskId": 73,
"projectId": null,
"description": "Documentation update",
"startedAt": "2026-03-31T11:05:36.931Z",
"endedAt": "2026-03-31T12:48:36.931Z",
"durationMinutes": 103,
"createdAt": "2026-03-31T12:48:36.931Z"
}