example-data.com

time-entries / #120

userId
Amely Daniel @amely_daniel
taskId
projectId
projects/23
description
API integration
startedAt
endedAt
durationMinutes
333
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/120"
)
time_entrie = res.json()
{
  "id": 120,
  "userId": 41,
  "taskId": null,
  "projectId": 23,
  "description": "API integration",
  "startedAt": "2025-12-26T10:29:15.473Z",
  "endedAt": "2025-12-26T16:02:15.473Z",
  "durationMinutes": 333,
  "createdAt": "2025-12-26T16:02:15.473Z"
}
Draftbit