---
title: "List case transactions"
method: GET
path: "/v1/transaction_monitoring/cases/{case_token}/transactions"
tags: ["Transaction Monitoring"]
---

# List case transactions

`GET /v1/transaction_monitoring/cases/{case_token}/transactions`

Lists the transactions associated with a case.

## Path parameters

- `case_token` string, uuid, required

## Query parameters

- `starting_after` string, uuid
- `ending_before` string, uuid
- `page_size` integer

## Response `200`

Case transactions

- object
  - `data` CaseTransaction[], required
    - union — A single transaction associated with a case. The `category` field identifies whether this is a card transaction or a payment transaction.
      - object — A card transaction associated with a case
        - `category` 'CARD', required
        - `token` string, uuid, required — Globally unique identifier for the card transaction
        - `card_token` string, uuid, required — Token of the card the transaction was made on
        - `account_token` string, uuid, required — Token of the account the transaction belongs to
        - `transaction_created_at` string, date-time, required — Date and time at which the transaction was created
        - `added_at` string, date-time, required — Date and time at which the transaction was added to the case
      - object — A payment (ACH) transaction associated with a case
        - `category` 'PAYMENT', required
        - `token` string, uuid, required — Globally unique identifier for the payment transaction
        - `financial_account_token` string, uuid, required — Token of the financial account the payment belongs to
        - `account_token` string, uuid — Token of the account the payment belongs to, if applicable
        - `transaction_created_at` string, date-time, required — Date and time at which the transaction was created
        - `added_at` string, date-time, required — Date and time at which the transaction was added to the case
  - `has_more` boolean, required

## Other responses

- `404` — Not Found

## Changes

- **2026-06-29** `71350a80a4da` — 7 breaking, 1 info
  - added `#/components/schemas/card_case_transaction, #/components/schemas/payment_case_transaction` to the `data/items/` response property `oneOf` list for the response status `200`
  - the `data/items/` response's property type/format changed from `object`/`` to ``/`` for status `200`
  - removed the required property `data/items/account_token` from the response with the `200` status
  - removed the required property `data/items/added_at` from the response with the `200` status
  - …4 more
- **2026-06-10** `1c39edadd1a4` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/lithic-com/apis/lithic-developer-api/changes/v1/transaction_monitoring/cases/:case_token/transactions/get.md)

---

[API](https://skmtc.dev/lithic-com/apis/lithic-developer-api.md) · [All operations](https://skmtc.dev/lithic-com/apis/lithic-developer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/lithic-com/lithic-developer-api/revisions/53ab5d4e2adb/schema)
