example-data.com

time-entries

time-entries

Page 4 of 10.

userId
Antoinette Greenfelder @antoinette_greenfelder61
taskId
projectId
projects/69
description
Meeting preparation
startedAt
endedAt
durationMinutes
35
createdAt
userId
Antoinette Greenfelder @antoinette_greenfelder61
taskId
projectId
description
Code review
startedAt
endedAt
durationMinutes
181
createdAt
userId
Ericka DuBuque @ericka.dubuque
taskId
projectId
description
Research and discovery
startedAt
endedAt
durationMinutes
368
createdAt
userId
Ericka DuBuque @ericka.dubuque
taskId
projectId
projects/18
description
Architecture discussion
startedAt
endedAt
durationMinutes
341
createdAt
userId
Celia D'Amore @celia_damore
taskId
projectId
projects/76
description
Onboarding support
startedAt
endedAt
durationMinutes
246
createdAt
userId
Jennifer Stoltenberg @jennifer_stoltenberg
taskId
projectId
projects/83
description
Refactoring legacy code
startedAt
endedAt
durationMinutes
370
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": 73,
      "userId": 22,
      "taskId": null,
      "projectId": 69,
      "description": "Meeting preparation",
      "startedAt": "2026-05-07T15:07:23.550Z",
      "endedAt": "2026-05-07T15:42:23.550Z",
      "durationMinutes": 35,
      "createdAt": "2026-05-07T15:42:23.550Z"
    },
    {
      "id": 74,
      "userId": 22,
      "taskId": null,
      "projectId": null,
      "description": "Code review",
      "startedAt": "2026-03-02T16:39:55.289Z",
      "endedAt": "2026-03-02T19:40:55.289Z",
      "durationMinutes": 181,
      "createdAt": "2026-03-02T19:40:55.289Z"
    },
    {
      "id": 75,
      "userId": 23,
      "taskId": null,
      "projectId": null,
      "description": "Research and discovery",
      "startedAt": "2026-02-08T06:48:34.343Z",
      "endedAt": "2026-02-08T12:56:34.343Z",
      "durationMinutes": 368,
      "createdAt": "2026-02-08T12:56:34.343Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 661,
    "totalPages": 28
  },
  "links": {
    "self": "/api/v1/time-entries?page=4",
    "next": "/api/v1/time-entries?page=5",
    "prev": "/api/v1/time-entries?page=3"
  }
}
Draftbit