example-data.com

time-entries / #240

userId
Mable West @mable_west
taskId
tasks/116
projectId
description
Deployment and monitoring
startedAt
endedAt
durationMinutes
179
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/240"
)
time_entrie = res.json()
{
  "id": 240,
  "userId": 86,
  "taskId": 116,
  "projectId": null,
  "description": "Deployment and monitoring",
  "startedAt": "2026-02-23T04:29:32.290Z",
  "endedAt": "2026-02-23T07:28:32.290Z",
  "durationMinutes": 179,
  "createdAt": "2026-02-23T07:28:32.290Z"
}
Draftbit