example-data.com

time-entries / #211

userId
Berniece Medhurst @berniece_medhurst
taskId
tasks/134
projectId
description
Implementing feature
startedAt
endedAt
durationMinutes
102
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/211"
)
time_entrie = res.json()
{
  "id": 211,
  "userId": 77,
  "taskId": 134,
  "projectId": null,
  "description": "Implementing feature",
  "startedAt": "2025-11-27T19:42:25.813Z",
  "endedAt": "2025-11-27T21:24:25.813Z",
  "durationMinutes": 102,
  "createdAt": "2025-11-27T21:24:25.813Z"
}
Draftbit