example-data.com

time-entries / #202

userId
Ike Breitenberg @ike.breitenberg
taskId
projectId
projects/72
description
Customer call
startedAt
endedAt
durationMinutes
415
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/time-entries/202" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/time-entries/202"
);
const timeEntrie = await res.json();
import type { TimeEntrie } from "https://example-data.com/types/time-entries.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/time-entries/202"
);
const timeEntrie = (await res.json()) as TimeEntrie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/time-entries/202"
)
time_entrie = res.json()
{
  "id": 202,
  "userId": 72,
  "taskId": null,
  "projectId": 72,
  "description": "Customer call",
  "startedAt": "2026-04-07T07:18:31.549Z",
  "endedAt": "2026-04-07T14:13:31.549Z",
  "durationMinutes": 415,
  "createdAt": "2026-04-07T14:13:31.549Z"
}
Draftbit