example-data.com

time-entries / #182

userId
Kaden Brekke @kaden_brekke
taskId
projectId
projects/64
description
Customer call
startedAt
endedAt
durationMinutes
94
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/182"
)
time_entrie = res.json()
{
  "id": 182,
  "userId": 67,
  "taskId": null,
  "projectId": 64,
  "description": "Customer call",
  "startedAt": "2026-01-14T14:14:11.102Z",
  "endedAt": "2026-01-14T15:48:11.102Z",
  "durationMinutes": 94,
  "createdAt": "2026-01-14T15:48:11.102Z"
}
Draftbit