example-data.com

time-entries / #1

userId
Charlene Roberts @charlene_roberts
taskId
tasks/410
projectId
description
Meeting preparation
startedAt
endedAt
durationMinutes
135
createdAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/time-entries/1"
)
time_entrie = res.json()
{
  "id": 1,
  "userId": 1,
  "taskId": 410,
  "projectId": null,
  "description": "Meeting preparation",
  "startedAt": "2026-04-19T23:01:52.099Z",
  "endedAt": "2026-04-20T01:16:52.099Z",
  "durationMinutes": 135,
  "createdAt": "2026-04-20T01:16:52.099Z"
}
Draftbit