example-data.com

time-entries / #79

userId
Jennifer Stoltenberg @jennifer_stoltenberg
taskId
tasks/454
projectId
description
Technical spike
startedAt
endedAt
durationMinutes
255
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/79"
)
time_entrie = res.json()
{
  "id": 79,
  "userId": 25,
  "taskId": 454,
  "projectId": null,
  "description": "Technical spike",
  "startedAt": "2026-04-01T14:37:09.224Z",
  "endedAt": "2026-04-01T18:52:09.224Z",
  "durationMinutes": 255,
  "createdAt": "2026-04-01T18:52:09.224Z"
}
Draftbit