example-data.com

time-entries / #121

userId
Amely Daniel @amely_daniel
taskId
tasks/651
projectId
description
Implementing feature
startedAt
endedAt
durationMinutes
404
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/121"
)
time_entrie = res.json()
{
  "id": 121,
  "userId": 41,
  "taskId": 651,
  "projectId": null,
  "description": "Implementing feature",
  "startedAt": "2026-01-25T03:42:21.538Z",
  "endedAt": "2026-01-25T10:26:21.538Z",
  "durationMinutes": 404,
  "createdAt": "2026-01-25T10:26:21.538Z"
}
Draftbit