example-data.com

time-entries / #227

userId
Mateo Gerlach @mateo.gerlach
taskId
projectId
projects/47
description
Documentation update
startedAt
endedAt
durationMinutes
465
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/227"
)
time_entrie = res.json()
{
  "id": 227,
  "userId": 81,
  "taskId": null,
  "projectId": 47,
  "description": "Documentation update",
  "startedAt": "2026-03-16T09:23:46.476Z",
  "endedAt": "2026-03-16T17:08:46.476Z",
  "durationMinutes": 465,
  "createdAt": "2026-03-16T17:08:46.476Z"
}
Draftbit