example-data.com

time-entries / #36

userId
Alanna Kilback @alanna_kilback31
taskId
projectId
projects/76
description
Technical spike
startedAt
endedAt
durationMinutes
117
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/36"
)
time_entrie = res.json()
{
  "id": 36,
  "userId": 14,
  "taskId": null,
  "projectId": 76,
  "description": "Technical spike",
  "startedAt": "2025-12-04T02:10:17.839Z",
  "endedAt": "2025-12-04T04:07:17.839Z",
  "durationMinutes": 117,
  "createdAt": "2025-12-04T04:07:17.839Z"
}
Draftbit