example-data.com

time-entries

time-entries

Page 8 of 10.

userId
Jarrell Flatley @jarrell_flatley39
taskId
tasks/609
projectId
description
UI component work
startedAt
endedAt
durationMinutes
72
createdAt
userId
Jarrell Flatley @jarrell_flatley39
taskId
tasks/389
projectId
description
Onboarding support
startedAt
endedAt
durationMinutes
128
createdAt
userId
Jarrell Flatley @jarrell_flatley39
taskId
projectId
description
Writing tests
startedAt
endedAt
durationMinutes
62
createdAt
userId
Mckenna Hegmann-Price @mckenna.hegmann-price77
taskId
projectId
description
API integration
startedAt
endedAt
durationMinutes
447
createdAt
userId
Mckenna Hegmann-Price @mckenna.hegmann-price77
taskId
tasks/377
projectId
description
UI component work
startedAt
endedAt
durationMinutes
283
createdAt
userId
Theresia Collins @theresia_collins86
taskId
projectId
projects/73
description
Database optimization
startedAt
endedAt
durationMinutes
426
createdAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/time-entries?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/time-entries?limit=25"
);
const { data, meta } = await res.json();
import type { TimeEntrie, ListEnvelope } from "https://example-data.com/types/time-entries.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/time-entries?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<TimeEntrie>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/time-entries",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 169,
      "userId": 61,
      "taskId": 609,
      "projectId": null,
      "description": "UI component work",
      "startedAt": "2025-12-09T17:06:35.635Z",
      "endedAt": "2025-12-09T18:18:35.635Z",
      "durationMinutes": 72,
      "createdAt": "2025-12-09T18:18:35.635Z"
    },
    {
      "id": 170,
      "userId": 61,
      "taskId": 389,
      "projectId": null,
      "description": "Onboarding support",
      "startedAt": "2026-04-11T16:45:23.255Z",
      "endedAt": "2026-04-11T18:53:23.255Z",
      "durationMinutes": 128,
      "createdAt": "2026-04-11T18:53:23.255Z"
    },
    {
      "id": 171,
      "userId": 61,
      "taskId": null,
      "projectId": null,
      "description": "Writing tests",
      "startedAt": "2026-04-02T02:54:29.041Z",
      "endedAt": "2026-04-02T03:56:29.041Z",
      "durationMinutes": 62,
      "createdAt": "2026-04-02T03:56:29.041Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 661,
    "totalPages": 28
  },
  "links": {
    "self": "/api/v1/time-entries?page=8",
    "next": "/api/v1/time-entries?page=9",
    "prev": "/api/v1/time-entries?page=7"
  }
}
Draftbit