time-entries #401
- userId
-
Tillman Breitenberg @tillman_breitenberg54
- taskId
- tasks/404
- projectId
- —
- description
- UI component work
- startedAt
- endedAt
- durationMinutes
- 479
- createdAt
Overview
time-entries / #401
#401
#401
UI component work
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/401" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/401" ); 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/401"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/401"
)
time_entrie = res.json() Response
{
"id": 401,
"userId": 145,
"taskId": 404,
"projectId": null,
"description": "UI component work",
"startedAt": "2026-03-31T00:58:04.617Z",
"endedAt": "2026-03-31T08:57:04.617Z",
"durationMinutes": 479,
"createdAt": "2026-03-31T08:57:04.617Z"
}