example-data.com

time-entries / #238

userId
Colby Kovacek @colby_kovacek40
taskId
projectId
projects/69
description
Onboarding support
startedAt
endedAt
durationMinutes
203
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/238"
)
time_entrie = res.json()
{
  "id": 238,
  "userId": 85,
  "taskId": null,
  "projectId": 69,
  "description": "Onboarding support",
  "startedAt": "2025-12-20T09:03:56.033Z",
  "endedAt": "2025-12-20T12:26:56.033Z",
  "durationMinutes": 203,
  "createdAt": "2025-12-20T12:26:56.033Z"
}
Draftbit