---
title: "List billing events"
method: GET
path: "/api/billing/events"
tags: ["billing"]
---

# List billing events

`GET /api/billing/events`

[cloud-only] Returns a paginated list of billing events (charges, credits, refunds) for the authenticated user.

## Query parameters

- `limit` integer
- `offset` integer
- `type` string

## Response `200`

Billing events

- BillingEventsResponse — [cloud-only] Paginated list of billing events for a workspace.
  - `total` integer, required — Total number of events
  - `events` BillingEvent[], required
    - `id` string, required
    - `type` 'charge' | 'credit' | 'refund' | 'topup' | 'subscription', required
    - `amount` integer, required — Amount in credits
    - `description` string
    - `job_id` string, uuid, nullable
    - `created_at` string, date-time, required
  - `page` integer, required — Current page number (1-indexed)
  - `limit` integer, required — Items per page
  - `totalPages` integer, required — Total number of pages

## Other responses

- `401` — Unauthorized
- `500` — Internal server error

## Changes

- **2026-05-22** `c4db9e1283df` — 1 breaking, 3 info
  - removed the required property `has_more` from the response with the `200` status
  - added the required property `limit` to the response with the `200` status
  - added the required property `page` to the response with the `200` status
  - added the required property `totalPages` to the response with the `200` status
- **2026-05-22** `09a5075587c8` — 2 info
  - api operation id `listBillingEvents` removed and replaced with `getBillingEvents`
  - added the non-success response with the status `500`
- **2026-05-08** `c9640fded659` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/comfy-org/apis/comfyui-api/changes/api/billing/events/get.md)

---

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