---
title: "List charge history for a team"
method: GET
path: "/billing/team/{team_id}/charge-history"
tags: ["billing"]
---

# List charge history for a team

`GET /billing/team/{team_id}/charge-history`

Return recent Stripe charge and invoice metadata for the team.

Raises:
    HTTPException: When billing history is unavailable or access is denied.

## Path parameters

- `team_id` string, required

## Query parameters

- `limit` integer

## Response `200`

Successful Response

- ChargeHistoryResponse — Recent Stripe charges and invoices for a team.
  - `charges` ChargeHistoryItem[], required
    - `id` string, required
    - `type` 'payment_intent' | 'invoice', required
    - `amount_cents` integer, required
    - `currency` string, required
    - `status` string, required
    - `description` string, nullable
    - `created` integer, required
    - `metadata` object

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-24** `1cffaad2a921` — 1 warning, 1 info
  - removed the optional property `detail` from the response with the `422` status
  - added the required property `error` to the response with the `422` status

[Change history](https://skmtc.dev/pioneer/apis/brain-api/changes/billing/team/:team_id/charge-history/get.md)

---

[API](https://skmtc.dev/pioneer/apis/brain-api.md) · [All operations](https://skmtc.dev/pioneer/apis/brain-api/llms.txt) · [OpenAPI document](https://skmtc.dev/pioneer/apis/brain-api/revisions/1cffaad2a921?raw)
