time-entries #183
- userId
-
Kaden Brekke @kaden_brekke
- taskId
- tasks/25
- projectId
- —
- description
- Bug investigation and fix
- startedAt
- endedAt
- durationMinutes
- 472
- createdAt
Overview
time-entries / #183
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/183" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/183" ); 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/183"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/183"
)
time_entrie = res.json() Response
{
"id": 183,
"userId": 67,
"taskId": 25,
"projectId": null,
"description": "Bug investigation and fix",
"startedAt": "2026-04-01T02:33:45.095Z",
"endedAt": "2026-04-01T10:25:45.095Z",
"durationMinutes": 472,
"createdAt": "2026-04-01T10:25:45.095Z"
}