time-entries #302
- userId
-
Allan Buckridge @allan_buckridge
- taskId
- tasks/636
- projectId
- —
- description
- API integration
- startedAt
- endedAt
- durationMinutes
- 475
- createdAt
Overview
time-entries / #302
#302
#302
API integration
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/302" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/302" ); 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/302"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/302"
)
time_entrie = res.json() Response
{
"id": 302,
"userId": 106,
"taskId": 636,
"projectId": null,
"description": "API integration",
"startedAt": "2026-03-14T16:12:38.715Z",
"endedAt": "2026-03-15T00:07:38.715Z",
"durationMinutes": 475,
"createdAt": "2026-03-15T00:07:38.715Z"
}