example-data.com

time-entries / #213

userId
Berniece Medhurst @berniece_medhurst
taskId
projectId
projects/39
description
Implementing feature
startedAt
endedAt
durationMinutes
64
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/213"
)
time_entrie = res.json()
{
  "id": 213,
  "userId": 77,
  "taskId": null,
  "projectId": 39,
  "description": "Implementing feature",
  "startedAt": "2026-04-06T02:49:02.639Z",
  "endedAt": "2026-04-06T03:53:02.639Z",
  "durationMinutes": 64,
  "createdAt": "2026-04-06T03:53:02.639Z"
}
Draftbit