example-data.com

time-entries / #156

userId
Simeon Robel @simeon_robel12
taskId
tasks/547
projectId
description
API integration
startedAt
endedAt
durationMinutes
162
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/156"
)
time_entrie = res.json()
{
  "id": 156,
  "userId": 55,
  "taskId": 547,
  "projectId": null,
  "description": "API integration",
  "startedAt": "2025-12-17T23:58:21.769Z",
  "endedAt": "2025-12-18T02:40:21.769Z",
  "durationMinutes": 162,
  "createdAt": "2025-12-18T02:40:21.769Z"
}
Draftbit