time-entries #609
- userId
-
Adelia Roberts @adelia_roberts0
- taskId
- tasks/224
- projectId
- —
- description
- Deployment and monitoring
- startedAt
- endedAt
- durationMinutes
- 221
- createdAt
Overview
time-entries / #609
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/609" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/609" ); 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/609"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/609"
)
time_entrie = res.json() Response
{
"id": 609,
"userId": 231,
"taskId": 224,
"projectId": null,
"description": "Deployment and monitoring",
"startedAt": "2025-12-12T08:38:17.980Z",
"endedAt": "2025-12-12T12:19:17.980Z",
"durationMinutes": 221,
"createdAt": "2025-12-12T12:19:17.980Z"
}