time-entries #351
- userId
-
Audreanne Will @audreanne_will
- taskId
- —
- projectId
- projects/5
- description
- Implementing feature
- startedAt
- endedAt
- durationMinutes
- 77
- createdAt
Overview
time-entries / #351
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/351" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/351" ); 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/351"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/351"
)
time_entrie = res.json() Response
{
"id": 351,
"userId": 127,
"taskId": null,
"projectId": 5,
"description": "Implementing feature",
"startedAt": "2025-11-28T16:42:18.440Z",
"endedAt": "2025-11-28T17:59:18.440Z",
"durationMinutes": 77,
"createdAt": "2025-11-28T17:59:18.440Z"
}