example-data.com

time-entries / #138

userId
Lacy Gusikowski @lacy.gusikowski
taskId
tasks/75
projectId
description
Documentation update
startedAt
endedAt
durationMinutes
198
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/138"
)
time_entrie = res.json()
{
  "id": 138,
  "userId": 47,
  "taskId": 75,
  "projectId": null,
  "description": "Documentation update",
  "startedAt": "2026-01-02T04:53:45.178Z",
  "endedAt": "2026-01-02T08:11:45.178Z",
  "durationMinutes": 198,
  "createdAt": "2026-01-02T08:11:45.178Z"
}
Draftbit