example-data.com

time-entries / #51

userId
Kenya Abshire @kenya.abshire
taskId
tasks/160
projectId
description
Security review
startedAt
endedAt
durationMinutes
52
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/51"
)
time_entrie = res.json()
{
  "id": 51,
  "userId": 18,
  "taskId": 160,
  "projectId": null,
  "description": "Security review",
  "startedAt": "2025-12-22T13:20:16.990Z",
  "endedAt": "2025-12-22T14:12:16.990Z",
  "durationMinutes": 52,
  "createdAt": "2025-12-22T14:12:16.990Z"
}
Draftbit