example-data.com

time-entries

time-entries

Page 2 of 10.

userId
Jaycee Erdman @jaycee_erdman96
taskId
projectId
description
Architecture discussion
startedAt
endedAt
durationMinutes
413
createdAt
userId
Jaycee Erdman @jaycee_erdman96
taskId
projectId
description
Performance profiling
startedAt
endedAt
durationMinutes
149
createdAt
userId
Jaycee Erdman @jaycee_erdman96
taskId
projectId
description
Customer call
startedAt
endedAt
durationMinutes
153
createdAt
userId
Jaycee Erdman @jaycee_erdman96
taskId
projectId
projects/23
description
API integration
startedAt
endedAt
durationMinutes
65
createdAt
userId
Jaycee Erdman @jaycee_erdman96
taskId
tasks/660
projectId
description
UI component work
startedAt
endedAt
durationMinutes
261
createdAt
userId
Leonel Hamill @leonel_hamill33
taskId
projectId
projects/50
description
Deployment and monitoring
startedAt
endedAt
durationMinutes
72
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": 25,
      "userId": 10,
      "taskId": null,
      "projectId": null,
      "description": "Architecture discussion",
      "startedAt": "2026-04-20T05:56:26.866Z",
      "endedAt": "2026-04-20T12:49:26.866Z",
      "durationMinutes": 413,
      "createdAt": "2026-04-20T12:49:26.866Z"
    },
    {
      "id": 26,
      "userId": 10,
      "taskId": null,
      "projectId": null,
      "description": "Performance profiling",
      "startedAt": "2026-03-24T06:46:08.197Z",
      "endedAt": "2026-03-24T09:15:08.197Z",
      "durationMinutes": 149,
      "createdAt": "2026-03-24T09:15:08.197Z"
    },
    {
      "id": 27,
      "userId": 10,
      "taskId": null,
      "projectId": null,
      "description": "Customer call",
      "startedAt": "2026-04-16T04:47:19.526Z",
      "endedAt": "2026-04-16T07:20:19.526Z",
      "durationMinutes": 153,
      "createdAt": "2026-04-16T07:20:19.526Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 661,
    "totalPages": 28
  },
  "links": {
    "self": "/api/v1/time-entries?page=2",
    "next": "/api/v1/time-entries?page=3",
    "prev": "/api/v1/time-entries?page=1"
  }
}
Draftbit