example-data.com

time-entries / #114

userId
Gwendolyn Wyman @gwendolyn.wyman87
taskId
projectId
projects/8
description
UI component work
startedAt
endedAt
durationMinutes
194
createdAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/time-entries/114" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/time-entries/114"
);
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/114"
);
const timeEntrie = (await res.json()) as TimeEntrie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/time-entries/114"
)
time_entrie = res.json()
{
  "id": 114,
  "userId": 40,
  "taskId": null,
  "projectId": 8,
  "description": "UI component work",
  "startedAt": "2026-03-05T09:53:56.834Z",
  "endedAt": "2026-03-05T13:07:56.834Z",
  "durationMinutes": 194,
  "createdAt": "2026-03-05T13:07:56.834Z"
}
Draftbit