example-data.com

time-entries

time-entries

Browse 661 time-entries records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

userId
Charlene Roberts @charlene_roberts
taskId
tasks/410
projectId
description
Meeting preparation
startedAt
endedAt
durationMinutes
135
createdAt
userId
Amina King @amina_king41
taskId
tasks/708
projectId
description
Technical spike
startedAt
endedAt
durationMinutes
17
createdAt
userId
Amina King @amina_king41
taskId
projectId
description
Implementing feature
startedAt
endedAt
durationMinutes
436
createdAt
userId
Conner Bernhard @conner.bernhard33
taskId
projectId
projects/40
description
Incident response
startedAt
endedAt
durationMinutes
62
createdAt
userId
Conner Bernhard @conner.bernhard33
taskId
tasks/242
projectId
description
Code review
startedAt
endedAt
durationMinutes
306
createdAt
userId
Conner Bernhard @conner.bernhard33
taskId
projectId
description
Database optimization
startedAt
endedAt
durationMinutes
307
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": 1,
      "userId": 1,
      "taskId": 410,
      "projectId": null,
      "description": "Meeting preparation",
      "startedAt": "2026-04-19T23:01:52.099Z",
      "endedAt": "2026-04-20T01:16:52.099Z",
      "durationMinutes": 135,
      "createdAt": "2026-04-20T01:16:52.099Z"
    },
    {
      "id": 2,
      "userId": 2,
      "taskId": 708,
      "projectId": null,
      "description": "Technical spike",
      "startedAt": "2026-03-13T20:26:52.991Z",
      "endedAt": "2026-03-13T20:43:52.991Z",
      "durationMinutes": 17,
      "createdAt": "2026-03-13T20:43:52.991Z"
    },
    {
      "id": 3,
      "userId": 2,
      "taskId": null,
      "projectId": null,
      "description": "Implementing feature",
      "startedAt": "2026-03-03T21:32:21.451Z",
      "endedAt": "2026-03-04T04:48:21.451Z",
      "durationMinutes": 436,
      "createdAt": "2026-03-04T04:48:21.451Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 661,
    "totalPages": 27
  },
  "links": {
    "self": "/api/v1/time-entries?page=1",
    "first": "/api/v1/time-entries?page=1",
    "last": "/api/v1/time-entries?page=27",
    "next": "/api/v1/time-entries?page=2",
    "prev": null
  }
}

View full response →

Draftbit