example-data.com

time-entries / #145

userId
Jolie Abernathy @jolie_abernathy33
taskId
projectId
projects/22
description
Implementing feature
startedAt
endedAt
durationMinutes
457
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/145"
)
time_entrie = res.json()
{
  "id": 145,
  "userId": 50,
  "taskId": null,
  "projectId": 22,
  "description": "Implementing feature",
  "startedAt": "2026-01-09T22:29:16.302Z",
  "endedAt": "2026-01-10T06:06:16.302Z",
  "durationMinutes": 457,
  "createdAt": "2026-01-10T06:06:16.302Z"
}
Draftbit