example-data.com

time-entries / #19

userId
Einar Volkman @einar_volkman69
taskId
tasks/192
projectId
description
Onboarding support
startedAt
endedAt
durationMinutes
18
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/19"
)
time_entrie = res.json()
{
  "id": 19,
  "userId": 7,
  "taskId": 192,
  "projectId": null,
  "description": "Onboarding support",
  "startedAt": "2025-12-05T01:02:24.122Z",
  "endedAt": "2025-12-05T01:20:24.122Z",
  "durationMinutes": 18,
  "createdAt": "2025-12-05T01:20:24.122Z"
}
Draftbit