example-data.com

time-entries / #50

userId
Gavin Lowe @gavin_lowe
taskId
tasks/37
projectId
description
Documentation update
startedAt
endedAt
durationMinutes
162
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/50"
)
time_entrie = res.json()
{
  "id": 50,
  "userId": 17,
  "taskId": 37,
  "projectId": null,
  "description": "Documentation update",
  "startedAt": "2026-01-23T00:52:05.072Z",
  "endedAt": "2026-01-23T03:34:05.072Z",
  "durationMinutes": 162,
  "createdAt": "2026-01-23T03:34:05.072Z"
}
Draftbit