time-entries #410
- userId
-
Orrin Grant @orrin.grant42
- taskId
- —
- projectId
- projects/18
- description
- UI component work
- startedAt
- endedAt
- durationMinutes
- 268
- createdAt
Overview
time-entries / #410
#410
#410
UI component work
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/410" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/410" ); 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/410"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/410"
)
time_entrie = res.json() Response
{
"id": 410,
"userId": 152,
"taskId": null,
"projectId": 18,
"description": "UI component work",
"startedAt": "2026-03-23T01:28:27.145Z",
"endedAt": "2026-03-23T05:56:27.145Z",
"durationMinutes": 268,
"createdAt": "2026-03-23T05:56:27.145Z"
}