example-data.com

time-entries / #31

userId
Mara Johnson @mara.johnson17
taskId
projectId
description
Database optimization
startedAt
endedAt
durationMinutes
42
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/31"
)
time_entrie = res.json()
{
  "id": 31,
  "userId": 12,
  "taskId": null,
  "projectId": null,
  "description": "Database optimization",
  "startedAt": "2026-01-18T10:42:19.345Z",
  "endedAt": "2026-01-18T11:24:19.345Z",
  "durationMinutes": 42,
  "createdAt": "2026-01-18T11:24:19.345Z"
}
Draftbit