time-entries #455
- userId
-
Kamryn Rogahn @kamryn_rogahn40
- taskId
- tasks/50
- projectId
- —
- description
- Technical spike
- startedAt
- endedAt
- durationMinutes
- 231
- createdAt
Overview
time-entries / #455
#455
#455
Technical spike
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/455" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/455" ); 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/455"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/455"
)
time_entrie = res.json() Response
{
"id": 455,
"userId": 170,
"taskId": 50,
"projectId": null,
"description": "Technical spike",
"startedAt": "2026-02-25T03:35:27.293Z",
"endedAt": "2026-02-25T07:26:27.293Z",
"durationMinutes": 231,
"createdAt": "2026-02-25T07:26:27.293Z"
}