example-data.com

time-entries / #29

userId
Jaycee Erdman @jaycee_erdman96
taskId
tasks/660
projectId
description
UI component work
startedAt
endedAt
durationMinutes
261
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/29"
)
time_entrie = res.json()
{
  "id": 29,
  "userId": 10,
  "taskId": 660,
  "projectId": null,
  "description": "UI component work",
  "startedAt": "2025-12-16T05:31:40.115Z",
  "endedAt": "2025-12-16T09:52:40.115Z",
  "durationMinutes": 261,
  "createdAt": "2025-12-16T09:52:40.115Z"
}
Draftbit