example-data.com

time-entries / #146

userId
Jolie Abernathy @jolie_abernathy33
taskId
projectId
projects/54
description
Documentation update
startedAt
endedAt
durationMinutes
118
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/146"
)
time_entrie = res.json()
{
  "id": 146,
  "userId": 50,
  "taskId": null,
  "projectId": 54,
  "description": "Documentation update",
  "startedAt": "2026-01-14T11:28:46.359Z",
  "endedAt": "2026-01-14T13:26:46.359Z",
  "durationMinutes": 118,
  "createdAt": "2026-01-14T13:26:46.359Z"
}
Draftbit