example-data.com

time-entries / #75

userId
Ericka DuBuque @ericka.dubuque
taskId
projectId
description
Research and discovery
startedAt
endedAt
durationMinutes
368
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/75"
)
time_entrie = res.json()
{
  "id": 75,
  "userId": 23,
  "taskId": null,
  "projectId": null,
  "description": "Research and discovery",
  "startedAt": "2026-02-08T06:48:34.343Z",
  "endedAt": "2026-02-08T12:56:34.343Z",
  "durationMinutes": 368,
  "createdAt": "2026-02-08T12:56:34.343Z"
}
Draftbit