example-data.com

time-entries / #6

userId
Conner Bernhard @conner.bernhard33
taskId
projectId
description
Database optimization
startedAt
endedAt
durationMinutes
307
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/6"
)
time_entrie = res.json()
{
  "id": 6,
  "userId": 3,
  "taskId": null,
  "projectId": null,
  "description": "Database optimization",
  "startedAt": "2026-02-07T18:34:53.757Z",
  "endedAt": "2026-02-07T23:41:53.757Z",
  "durationMinutes": 307,
  "createdAt": "2026-02-07T23:41:53.757Z"
}
Draftbit