example-data.com

time-entries / #139

userId
Maymie Boehm @maymie.boehm90
taskId
tasks/702
projectId
description
API integration
startedAt
endedAt
durationMinutes
433
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/139"
)
time_entrie = res.json()
{
  "id": 139,
  "userId": 48,
  "taskId": 702,
  "projectId": null,
  "description": "API integration",
  "startedAt": "2026-01-14T13:16:30.162Z",
  "endedAt": "2026-01-14T20:29:30.162Z",
  "durationMinutes": 433,
  "createdAt": "2026-01-14T20:29:30.162Z"
}
Draftbit