example-data.com

time-entries / #178

userId
Tiara Wilderman @tiara_wilderman
taskId
tasks/656
projectId
description
Technical spike
startedAt
endedAt
durationMinutes
172
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/178"
)
time_entrie = res.json()
{
  "id": 178,
  "userId": 66,
  "taskId": 656,
  "projectId": null,
  "description": "Technical spike",
  "startedAt": "2025-12-30T11:42:17.451Z",
  "endedAt": "2025-12-30T14:34:17.451Z",
  "durationMinutes": 172,
  "createdAt": "2025-12-30T14:34:17.451Z"
}
Draftbit