example-data.com

time-entries

time-entries

Page 9 of 10.

userId
Lamont Huel @lamont.huel
taskId
projectId
projects/25
description
Research and discovery
startedAt
endedAt
durationMinutes
40
createdAt
userId
Lamont Huel @lamont.huel
taskId
projectId
projects/42
description
Onboarding support
startedAt
endedAt
durationMinutes
334
createdAt
userId
Virginie O'Connell @virginie.oconnell55
taskId
projectId
description
Incident response
startedAt
endedAt
durationMinutes
191
createdAt
userId
Virginie O'Connell @virginie.oconnell55
taskId
projectId
description
UI component work
startedAt
endedAt
durationMinutes
280
createdAt
userId
Virginie O'Connell @virginie.oconnell55
taskId
projectId
description
Deployment and monitoring
startedAt
endedAt
durationMinutes
84
createdAt
userId
Virginie O'Connell @virginie.oconnell55
taskId
projectId
description
Onboarding support
startedAt
endedAt
durationMinutes
37
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": 193,
      "userId": 69,
      "taskId": null,
      "projectId": 25,
      "description": "Research and discovery",
      "startedAt": "2026-04-04T10:45:00.100Z",
      "endedAt": "2026-04-04T11:25:00.100Z",
      "durationMinutes": 40,
      "createdAt": "2026-04-04T11:25:00.100Z"
    },
    {
      "id": 194,
      "userId": 69,
      "taskId": null,
      "projectId": 42,
      "description": "Onboarding support",
      "startedAt": "2026-02-11T14:59:24.913Z",
      "endedAt": "2026-02-11T20:33:24.913Z",
      "durationMinutes": 334,
      "createdAt": "2026-02-11T20:33:24.913Z"
    },
    {
      "id": 195,
      "userId": 70,
      "taskId": null,
      "projectId": null,
      "description": "Incident response",
      "startedAt": "2026-04-01T03:38:27.733Z",
      "endedAt": "2026-04-01T06:49:27.733Z",
      "durationMinutes": 191,
      "createdAt": "2026-04-01T06:49:27.733Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 661,
    "totalPages": 28
  },
  "links": {
    "self": "/api/v1/time-entries?page=9",
    "next": "/api/v1/time-entries?page=10",
    "prev": "/api/v1/time-entries?page=8"
  }
}
Draftbit