example-data.com

time-entries / #101

userId
Karlee Hudson-Turner @karlee.hudson-turner88
taskId
projectId
description
Security review
startedAt
endedAt
durationMinutes
306
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/101"
)
time_entrie = res.json()
{
  "id": 101,
  "userId": 36,
  "taskId": null,
  "projectId": null,
  "description": "Security review",
  "startedAt": "2026-05-17T06:55:03.998Z",
  "endedAt": "2026-05-17T12:01:03.998Z",
  "durationMinutes": 306,
  "createdAt": "2026-05-17T12:01:03.998Z"
}
Draftbit