example-data.com

time-entries / #137

userId
Lacy Gusikowski @lacy.gusikowski
taskId
projectId
description
Writing tests
startedAt
endedAt
durationMinutes
52
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/137"
)
time_entrie = res.json()
{
  "id": 137,
  "userId": 47,
  "taskId": null,
  "projectId": null,
  "description": "Writing tests",
  "startedAt": "2026-01-10T00:21:09.077Z",
  "endedAt": "2026-01-10T01:13:09.077Z",
  "durationMinutes": 52,
  "createdAt": "2026-01-10T01:13:09.077Z"
}
Draftbit