---
title: "Get Payment History With Refunds"
method: GET
path: "/stripe/payments/with-refunds"
tags: ["stripe"]
---

# Get Payment History With Refunds

`GET /stripe/payments/with-refunds`

Get current user's payment history with refunds.

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- PaymentWithRefundsResponse[]
  - `payment` PaymentResponse, required — Payment record.
    - `id` string, uuid, required
    - `user_id` string, uuid, required
    - `subscription_id` string, uuid, nullable, required
    - `amount_cents` integer, required
    - `currency` string, required
    - `status` string, required
    - `receipt_url` string, nullable, required
    - `paid_at` string, date-time, nullable, required
    - `description` string, nullable, required
    - `created_at` string, date-time, required
  - `refunds` RefundResponse[]
    - `id` string, uuid, required
    - `user_id` string, uuid, required
    - `subscription_id` string, uuid, nullable, required
    - `payment_id` string, uuid, nullable, required
    - `stripe_refund_id` string, required
    - `amount_cents` integer, required
    - `currency` string, required
    - `status` string, required
    - `reason` string, nullable, required
    - `receipt_url` string, nullable, required
    - `created_at` string, date-time, required
  - `total_refunded_cents` integer

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/meganova/apis/fastapi.md) · [All operations](https://skmtc.net/meganova/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/meganova/fastapi/revisions/2b2bab8b9017/schema)
