---
title: "List account entries"
method: GET
path: "/v1/customer-credits/accounts/{id}/entries"
tags: ["Customer Credits - Accounts (Experimental)"]
---

# List account entries

`GET /v1/customer-credits/accounts/{id}/entries`

List the credit and debit history for an account with cursor pagination.

## Path parameters

- `id` string, required

## Query parameters

- `limit` number
- `starting_after` string
- `ending_before` string

## Response `200`

Paginated list of entries

- EntryListResponseDto
  - `object` string, required — Object type
  - `data` EntryResponseDto[], required — Array of entries
    - `id` string, required — Entry ID
    - `transaction_id` string, required — Transaction ID
    - `account_id` string, required — Account ID
    - `side` 'debit' | 'credit', required — Debit or credit side
    - `amount` string, required — Amount as string for bigint safety
    - `created_at` string, required — Creation timestamp
  - `has_more` boolean, required — Whether more items exist beyond this page

## Other responses

- `400` — Bad Request - Invalid input parameters
- `401` — Unauthorized - Invalid or missing API key
- `404` — Not Found - Resource does not exist

---

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