example-data.com

time-entries / #143

userId
Green Kozey @green_kozey22
taskId
projectId
description
Security review
startedAt
endedAt
durationMinutes
61
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/143"
)
time_entrie = res.json()
{
  "id": 143,
  "userId": 49,
  "taskId": null,
  "projectId": null,
  "description": "Security review",
  "startedAt": "2026-02-04T08:08:17.532Z",
  "endedAt": "2026-02-04T09:09:17.532Z",
  "durationMinutes": 61,
  "createdAt": "2026-02-04T09:09:17.532Z"
}
Draftbit