time-entries #513
- userId
-
Oran Torphy @oran_torphy
- taskId
- —
- projectId
- projects/25
- description
- UI component work
- startedAt
- endedAt
- durationMinutes
- 18
- createdAt
Overview
time-entries / #513
#513
#513
UI component work
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/513" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/513" ); 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/513"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/513"
)
time_entrie = res.json() Response
{
"id": 513,
"userId": 189,
"taskId": null,
"projectId": 25,
"description": "UI component work",
"startedAt": "2025-11-30T08:27:29.312Z",
"endedAt": "2025-11-30T08:45:29.312Z",
"durationMinutes": 18,
"createdAt": "2025-11-30T08:45:29.312Z"
}