example-data.com

time-entries / #168

userId
Jarrell Flatley @jarrell_flatley39
taskId
projectId
description
Incident response
startedAt
endedAt
durationMinutes
23
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/168"
)
time_entrie = res.json()
{
  "id": 168,
  "userId": 61,
  "taskId": null,
  "projectId": null,
  "description": "Incident response",
  "startedAt": "2025-12-22T21:51:30.656Z",
  "endedAt": "2025-12-22T22:14:30.656Z",
  "durationMinutes": 23,
  "createdAt": "2025-12-22T22:14:30.656Z"
}
Draftbit