example-data.com

time-entries / #97

userId
Koby Pouros @koby_pouros60
taskId
tasks/557
projectId
description
Onboarding support
startedAt
endedAt
durationMinutes
16
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/97"
)
time_entrie = res.json()
{
  "id": 97,
  "userId": 34,
  "taskId": 557,
  "projectId": null,
  "description": "Onboarding support",
  "startedAt": "2025-12-14T07:08:43.115Z",
  "endedAt": "2025-12-14T07:24:43.115Z",
  "durationMinutes": 16,
  "createdAt": "2025-12-14T07:24:43.115Z"
}
Draftbit