example-data.com

time-entries / #220

userId
Bradford Doyle @bradford.doyle42
taskId
projectId
projects/44
description
Research and discovery
startedAt
endedAt
durationMinutes
23
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/220"
)
time_entrie = res.json()
{
  "id": 220,
  "userId": 79,
  "taskId": null,
  "projectId": 44,
  "description": "Research and discovery",
  "startedAt": "2026-04-06T05:24:40.993Z",
  "endedAt": "2026-04-06T05:47:40.993Z",
  "durationMinutes": 23,
  "createdAt": "2026-04-06T05:47:40.993Z"
}
Draftbit