example-data.com

time-entries / #150

userId
Samson Stroman @samson_stroman
taskId
projectId
description
Research and discovery
startedAt
endedAt
durationMinutes
53
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/150"
)
time_entrie = res.json()
{
  "id": 150,
  "userId": 52,
  "taskId": null,
  "projectId": null,
  "description": "Research and discovery",
  "startedAt": "2026-05-09T05:35:14.827Z",
  "endedAt": "2026-05-09T06:28:14.827Z",
  "durationMinutes": 53,
  "createdAt": "2026-05-09T06:28:14.827Z"
}
Draftbit