example-data.com

time-entries / #102

userId
Karlee Hudson-Turner @karlee.hudson-turner88
taskId
projectId
projects/66
description
Refactoring legacy code
startedAt
endedAt
durationMinutes
266
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/102"
)
time_entrie = res.json()
{
  "id": 102,
  "userId": 36,
  "taskId": null,
  "projectId": 66,
  "description": "Refactoring legacy code",
  "startedAt": "2026-03-15T00:15:42.920Z",
  "endedAt": "2026-03-15T04:41:42.920Z",
  "durationMinutes": 266,
  "createdAt": "2026-03-15T04:41:42.920Z"
}
Draftbit