---
title: "Get transaction history for the current customer"
method: GET
path: "/v1/stripe/transactions"
tags: ["Payment"]
---

# Get transaction history for the current customer

`GET /v1/stripe/transactions`

## Query parameters

- `limit` number — Number of transactions to return
- `offset` number — Number of transactions to skip for pagination
- `startDate` string, date-time — Start date for filtering transactions (inclusive)
- `endDate` string, date-time — End date for filtering transactions (inclusive)

## Response `200`

Customer transactions retrieved successfully

- object
  - `data` object, required
    - `transactions` object[], required
      - `id` string, required
      - `type` 'payment_intent' | 'coupon_claim' | 'manual_credit', required
      - `amount` number, required
      - `amountRefunded` number, required
      - `bonusAmount` number
      - `currency` string, required
      - `status` string, required
      - `created` number, required
      - `cardBrand` string, nullable
      - `cardLast4` string, nullable
      - `stripeInvoiceId` string, nullable
      - `receiptUrl` string, nullable
      - `description` string, nullable
    - `totalCount` number, required
    - `hasMore` boolean, required

## Changes

- **2026-07-24** `4448af6573a2` — 1 breaking, 4 warning, 7 info
  - removed the required property `data/transactions/items/paymentMethod` from the response with the `200` status
  - deleted the `query` request parameter `endingBefore`
  - deleted the `query` request parameter `startingAfter`
  - removed the optional property `data/nextPage` from the response with the `200` status
  - …8 more
- **2026-07-20** `c3b0e234fc13` — 1 info
  - added the optional property `data/transactions/items/bonusAmount` to the response with the `200` status
- **2026-06-19** `a9b22943fe9c` — 1 info
  - endpoint added
- **2026-06-17** `b1975c50c4ba` — 1 breaking
  - api path removed without deprecation
- **2026-05-07** `967c41f60844` — 1 info
  - api operation id `listStripeTransactions` removed and replaced with ``

[Change history](https://skmtc.dev/akash-network/apis/akash-network-console-api/changes/v1/stripe/transactions/get.md)

---

[API](https://skmtc.dev/akash-network/apis/akash-network-console-api.md) · [All operations](https://skmtc.dev/akash-network/apis/akash-network-console-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/akash-network/akash-network-console-api/revisions/8c068a3af6fe/schema)
