example-data.com

time-entries / #188

userId
Jewell Olson @jewell_olson2
taskId
projectId
projects/34
description
Research and discovery
startedAt
endedAt
durationMinutes
368
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/188"
)
time_entrie = res.json()
{
  "id": 188,
  "userId": 68,
  "taskId": null,
  "projectId": 34,
  "description": "Research and discovery",
  "startedAt": "2026-04-27T11:03:17.336Z",
  "endedAt": "2026-04-27T17:11:17.336Z",
  "durationMinutes": 368,
  "createdAt": "2026-04-27T17:11:17.336Z"
}
Draftbit