example-data.com

time-entries / #65

userId
Guy Christiansen @guy.christiansen40
taskId
projectId
projects/64
description
Customer call
startedAt
endedAt
durationMinutes
296
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/65"
)
time_entrie = res.json()
{
  "id": 65,
  "userId": 21,
  "taskId": null,
  "projectId": 64,
  "description": "Customer call",
  "startedAt": "2026-03-17T18:47:06.518Z",
  "endedAt": "2026-03-17T23:43:06.518Z",
  "durationMinutes": 296,
  "createdAt": "2026-03-17T23:43:06.518Z"
}
Draftbit