time-entries #440
- userId
-
Talon Turner @talon.turner59
- taskId
- tasks/68
- projectId
- —
- description
- Bug investigation and fix
- startedAt
- endedAt
- durationMinutes
- 25
- createdAt
Overview
time-entries / #440
Request
curl example
curl -sS \ "https://example-data.com/api/v1/time-entries/440" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/time-entries/440" ); 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/440"
);
const timeEntry = (await res.json()) as TimeEntry; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/time-entries/440"
)
time_entrie = res.json() Response
{
"id": 440,
"userId": 166,
"taskId": 68,
"projectId": null,
"description": "Bug investigation and fix",
"startedAt": "2025-12-30T09:34:27.361Z",
"endedAt": "2025-12-30T09:59:27.361Z",
"durationMinutes": 25,
"createdAt": "2025-12-30T09:59:27.361Z"
}