example-data.com

time-entries / #76

userId
Ericka DuBuque @ericka.dubuque
taskId
projectId
projects/18
description
Architecture discussion
startedAt
endedAt
durationMinutes
341
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/76"
)
time_entrie = res.json()
{
  "id": 76,
  "userId": 23,
  "taskId": null,
  "projectId": 18,
  "description": "Architecture discussion",
  "startedAt": "2026-05-09T10:52:53.084Z",
  "endedAt": "2026-05-09T16:33:53.084Z",
  "durationMinutes": 341,
  "createdAt": "2026-05-09T16:33:53.084Z"
}
Draftbit