time-entries #263
- userId
-
Esperanza Casper @esperanza_casper
- taskId
- tasks/601
- projectId
- —
- description
- Architecture discussion
- startedAt
- endedAt
- durationMinutes
- 328
- createdAt
Overview
time-entries / #263
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/263" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/263" ); 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/263"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/263"
)
time_entrie = res.json() Response
{
"id": 263,
"userId": 97,
"taskId": 601,
"projectId": null,
"description": "Architecture discussion",
"startedAt": "2025-12-29T04:40:09.015Z",
"endedAt": "2025-12-29T10:08:09.015Z",
"durationMinutes": 328,
"createdAt": "2025-12-29T10:08:09.015Z"
}