example-data.com

time-entries / #43

userId
Casimir Smitham @casimir_smitham35
taskId
projectId
projects/31
description
Code review
startedAt
endedAt
durationMinutes
213
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/43"
)
time_entrie = res.json()
{
  "id": 43,
  "userId": 16,
  "taskId": null,
  "projectId": 31,
  "description": "Code review",
  "startedAt": "2026-01-19T16:30:56.829Z",
  "endedAt": "2026-01-19T20:03:56.829Z",
  "durationMinutes": 213,
  "createdAt": "2026-01-19T20:03:56.829Z"
}
Draftbit