example-data.com

time-entries / #184

userId
Kaden Brekke @kaden_brekke
taskId
projectId
projects/56
description
Planning session
startedAt
endedAt
durationMinutes
76
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/184"
)
time_entrie = res.json()
{
  "id": 184,
  "userId": 67,
  "taskId": null,
  "projectId": 56,
  "description": "Planning session",
  "startedAt": "2026-03-25T22:44:12.680Z",
  "endedAt": "2026-03-26T00:00:12.680Z",
  "durationMinutes": 76,
  "createdAt": "2026-03-26T00:00:12.680Z"
}
Draftbit