---
title: "List Bookkeeping Entries"
method: GET
path: "/bookkeeping_entries"
---

# List Bookkeeping Entries

`GET /bookkeeping_entries`

## Query parameters

- `cursor` string — Return the page of entries after this one.
- `limit` integer — Limit the size of the list that is returned. The default (and maximum) is 100 objects.
- `account_id` string — The identifier for the Bookkeeping Account to filter by.

## Response `200`

Bookkeeping Entry List

- BookkeepingEntryList — A list of Bookkeeping Entry objects.
  - `data` BookkeepingEntry[], required — The contents of the list.
    - `account_id` string, required — The identifier for the Account the Entry belongs to.
    - `amount` integer, required — The Entry amount in the minor unit of its currency. For dollars, for example, this is cents.
    - `created_at` string, date-time, required — When the entry set was created.
    - `entry_set_id` string, required — The identifier for the Entry Set the Entry belongs to.
    - `id` string, required — The entry identifier.
    - `type` 'bookkeeping_entry', required — A constant representing the object's type. For this resource it will always be `bookkeeping_entry`.
  - `next_cursor` string, nullable, required — A pointer to a place in the list.

## Other responses

- `4XX` — Error
- `5XX` — Error

---

[API](https://skmtc.dev/increase/apis/increase-api.md) · [All operations](https://skmtc.dev/increase/apis/increase-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/increase/increase-api/revisions/83b14e7fc19f/schema)
