---
title: "List time entries"
method: GET
path: "/time_entries"
tags: ["Time Entries"]
---

# List time entries

`GET /time_entries`

Returns time entries. Use status=active for running timers or status=logged for history with date range.

## Query parameters

- `status` 'active' | 'logged'
- `start` string, date
- `end` string, date
- `all_time` boolean
- `clients` integer[]
- `projects` integer[]
- `tasks` integer[]
- `profiles` integer[]
- `statuses` string[]

## Response `200`

Successful response

- object
  - `data` TimeEntry[]
    - `id` integer
    - `team_id` integer
    - `project_id` integer, nullable
    - `task_id` integer, nullable
    - `profile_id` integer, nullable
    - `user_id` integer, nullable
    - `quantity` number — Hours logged
    - `description` string, nullable
    - `billed_status` 'unbilled' | 'billed' | 'fixed' | 'non-billable'
    - `date` string, date
    - `timer_status` 'stopped' | 'running'
    - `seconds` integer
    - `seconds_running` integer
    - `hours` number
    - `value` number
    - `cost` number
    - `yield` number
  - `totals` object
    - `hours` number
    - `value` number
    - `cost` number
    - `yield` number
  - `chart` object[]
  - `date_range` object
    - `start` string, date
    - `end` string, date

## Other responses

- `401` — Unauthenticated

## Changes

- **2026-09-04** `ee1727680ad9` — 1 info
  - added the new optional `query` request parameter `all_time`

[Change history](https://skmtc.dev/harpoonapp/apis/harpoon-api-documentation/changes/time_entries/get.md)

---

[API](https://skmtc.dev/harpoonapp/apis/harpoon-api-documentation.md) · [All operations](https://skmtc.dev/harpoonapp/apis/harpoon-api-documentation/llms.txt) · [OpenAPI document](https://skmtc.dev/harpoonapp/apis/harpoon-api-documentation/revisions/ee1727680ad9?raw)
