example-data.com
Menu
Browse docs and collections

Overview

time-entries / #322

time-entries #322

userId
Jamal Gerhold @jamal.gerhold
taskId
tasks/558
projectId
description
Deployment and monitoring
startedAt
endedAt
durationMinutes
47
createdAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/time-entries/322" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/time-entries/322"
);
const timeEntry = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/time-entries.d.ts https://example-data.com/types/time-entries.d.ts
import type { TimeEntry } from "./types/time-entries";

const res = await fetch(
  "https://example-data.com/api/v1/time-entries/322"
);
const timeEntry = (await res.json()) as TimeEntry;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/time-entries/322"
)
time_entrie = res.json()

Response

{
  "id": 322,
  "userId": 115,
  "taskId": 558,
  "projectId": null,
  "description": "Deployment and monitoring",
  "startedAt": "2025-11-26T13:36:49.734Z",
  "endedAt": "2025-11-26T14:23:49.734Z",
  "durationMinutes": 47,
  "createdAt": "2025-11-26T14:23:49.734Z"
}