example-data.com

time-entries / #60

userId
Alvina Koch @alvina.koch8
taskId
tasks/322
projectId
description
UI component work
startedAt
endedAt
durationMinutes
200
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/60"
)
time_entrie = res.json()
{
  "id": 60,
  "userId": 20,
  "taskId": 322,
  "projectId": null,
  "description": "UI component work",
  "startedAt": "2026-01-18T08:26:34.066Z",
  "endedAt": "2026-01-18T11:46:34.066Z",
  "durationMinutes": 200,
  "createdAt": "2026-01-18T11:46:34.066Z"
}
Draftbit