time-entries #121
- userId
-
Amely Daniel @amely_daniel
- taskId
- tasks/651
- projectId
- —
- description
- Implementing feature
- startedAt
- endedAt
- durationMinutes
- 404
- createdAt
Overview
time-entries / #121
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/121" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/121" ); 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/121"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/121"
)
time_entrie = res.json() Response
{
"id": 121,
"userId": 41,
"taskId": 651,
"projectId": null,
"description": "Implementing feature",
"startedAt": "2026-01-25T03:42:21.538Z",
"endedAt": "2026-01-25T10:26:21.538Z",
"durationMinutes": 404,
"createdAt": "2026-01-25T10:26:21.538Z"
}