time-entries #448
- userId
-
Vincenza Zemlak-Collier @vincenza_zemlak-collier
- taskId
- tasks/606
- projectId
- —
- description
- Refactoring legacy code
- startedAt
- endedAt
- durationMinutes
- 156
- createdAt
Overview
time-entries / #448
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/448" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/448" ); 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/448"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/448"
)
time_entrie = res.json() Response
{
"id": 448,
"userId": 168,
"taskId": 606,
"projectId": null,
"description": "Refactoring legacy code",
"startedAt": "2026-05-10T23:18:25.135Z",
"endedAt": "2026-05-11T01:54:25.135Z",
"durationMinutes": 156,
"createdAt": "2026-05-11T01:54:25.135Z"
}