example-data.com

time-entries / #116

userId
Gwendolyn Wyman @gwendolyn.wyman87
taskId
projectId
description
UI component work
startedAt
endedAt
durationMinutes
385
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/116"
)
time_entrie = res.json()
{
  "id": 116,
  "userId": 40,
  "taskId": null,
  "projectId": null,
  "description": "UI component work",
  "startedAt": "2026-02-27T06:26:13.695Z",
  "endedAt": "2026-02-27T12:51:13.695Z",
  "durationMinutes": 385,
  "createdAt": "2026-02-27T12:51:13.695Z"
}
Draftbit