time-entries #647
- userId
-
Santa Corwin @santa.corwin59
- taskId
- tasks/274
- projectId
- —
- description
- Technical spike
- startedAt
- endedAt
- durationMinutes
- 468
- createdAt
Overview
time-entries / #647
#647
#647
Technical spike
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/647" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/647" ); 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/647"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/647"
)
time_entrie = res.json() Response
{
"id": 647,
"userId": 247,
"taskId": 274,
"projectId": null,
"description": "Technical spike",
"startedAt": "2026-03-17T18:53:22.064Z",
"endedAt": "2026-03-18T02:41:22.064Z",
"durationMinutes": 468,
"createdAt": "2026-03-18T02:41:22.064Z"
}