example-data.com
Menu
Browse docs and collections

time-entries

time-entries

Browse 661 time-entries records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

time-entries #1

userId
Charlene Roberts @charlene_roberts
taskId
tasks/410
projectId
description
Meeting preparation
startedAt
endedAt
durationMinutes
135
createdAt

time-entries #2

userId
Amina King @amina_king41
taskId
tasks/708
projectId
description
Technical spike
startedAt
endedAt
durationMinutes
17
createdAt

time-entries #3

userId
Amina King @amina_king41
taskId
projectId
description
Implementing feature
startedAt
endedAt
durationMinutes
436
createdAt

time-entries #6

userId
Conner Bernhard @conner.bernhard33
taskId
projectId
description
Database optimization
startedAt
endedAt
durationMinutes
307
createdAt

Showing first 6 of 24 on this page.

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/time-entries?limit=25"

JavaScript example

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

TypeScript example

// Download once: mkdir -p types && curl -o types/time-entries.d.ts https://example-data.com/types/time-entries.d.ts
import type { TimeEntry, ListEnvelope } from "./types/time-entries";

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/time-entries",
    params={"limit": 25},
)
data = res.json()

Response

{
  "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 →