---
title: "Get all time entries"
method: GET
path: "/timeEntries"
tags: ["Time Entries"]
---

# Get all time entries

`GET /timeEntries`

Get all time entries

## Query parameters

- `limit` integer, nullable
- `search` string, nullable
- `ids` string[], nullable
- `orders` object[], nullable
  - `column` string
  - `direction` 'asc' | 'desc'
- `withRelations` boolean, nullable
- `start` string, date-time, nullable
- `end` string, date-time, nullable
- `onlyDeleted` boolean, nullable
- `isInterrupt` boolean, nullable
- `isBilled` boolean, nullable
- `isBillable` boolean, nullable
- `searchInDescription` string, nullable
- `clientId` string, nullable
- `projectId` string, nullable
- `serviceId` string, nullable
- `userId` string, nullable
- `userIds` string[], nullable
- `extToolId` string, nullable
- `exact` boolean, nullable

## Response `200`

successful operation

- object
  - `data` TimeEntry[]
    - `id` string, ulid
    - `user_id` string, ulid
    - `client_id` string, ulid
    - `project_id` string, ulid
    - `service_id` string, ulid
    - `description` string
    - `billable` boolean
    - `billed` boolean
    - `billed_at` string, date-time
    - `is_interrupt` boolean
    - `started_at` string, date-time
    - `ended_at` string, date-time
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `deleted_at` string, date-time
    - `ext_tool_id` string, ulid
    - `temp_id` string
    - `push_state` integer
    - `push_errors` string[]
  - `meta` Pagination
    - `current_page` integer
    - `from` integer
    - `last_page` integer
    - `links` object[]
      - `url` string
      - `label` string
      - `active` boolean
    - `path` string
    - `per_page` integer
    - `to` integer
    - `total` integer

## Other responses

- `401` — Error: Unauthorized

---

[API](https://skmtc.net/timelink/apis/timelink-api.md) · [All operations](https://skmtc.net/timelink/apis/timelink-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/timelink/timelink-api/revisions/113f9953e62a/schema)
