---
title: "List Transactions"
method: GET
path: "/v1/organizations/billing/transactions"
tags: ["Organization Billing"]
---

# List Transactions

`GET /v1/organizations/billing/transactions`

List individual credit-usage transactions (most recent first).

The per-operation **credit ledger**: every credit debit, what consumed it
(operation/extractor/resource), and when — the transaction-level itemization
beyond the aggregated `/usage/breakdown` totals.

**Query Parameters:**
- `limit`: page size (1-200, default 50)
- `offset`: records to skip
- `billing_month`: optional YYYY-MM filter

**Requirements:** Read permission.

**Example:**
```python
response = await client.get(
    "/v1/organizations/billing/transactions",
    params={"limit": 50, "billing_month": "2026-06"},
)
```

## Query parameters

- `limit` integer — Page size (max 200)
- `offset` integer — Records to skip (pagination)
- `billing_month` string, nullable — Optional YYYY-MM filter (defaults to all months)

## Response `200`

Successful Response

- TransactionsListResponse — Paginated list of credit-usage transactions (most recent first).
  - `transactions` TransactionInfo[] — Credit-usage transactions, newest first
    - `record_id` string, required — Unique usage-record ID
    - `occurred_at` string, date-time, required — When the credits were consumed
    - `billing_month` string, required — Billing month (YYYY-MM)
    - `credits_consumed` integer, required — Credits consumed by this operation
    - `cost_usd` number, required — Approx USD cost (credits * $0.001)
    - `operation_type` string, required — Operation that consumed credits (extractor, upload, batch, search)
    - `extractor_name` string, nullable — Extractor name, if operation was an extraction
    - `resource_id` string, nullable — ID of the resource processed (collection/object/batch)
    - `resource_type` string, nullable — Type of resource processed
    - `namespace_id` string, nullable — Namespace this charge is attributed to (SP-242), so the per-row ledger is traceable per namespace for chargeback. None for namespace-less / pre-attribution records.
    - `app_id` string, nullable — Canvas App ID, if attributed
    - `metadata` object — Operation context (tokens, pages, minutes, etc.)
  - `total` integer, required — Total matching transactions
  - `limit` integer, required — Page size
  - `offset` integer, required — Records skipped
  - `has_more` boolean, required — Whether more transactions exist beyond this page

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

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