---
title: "Get payment methods"
method: GET
path: "/api/patients/payment-methods"
tags: ["patients"]
---

# Get payment methods

`GET /api/patients/payment-methods`

Get all saved payment methods for the current patient. Shows which one is set as default.

## Response `200`

Successful Response

- PaymentMethodsListResponse — List of payment methods response.
  - `payment_methods` PaymentMethodResponse[], required — List of payment methods
    - `id` string, required — Stripe payment method ID
    - `type` string, required — Payment method type (card)
    - `card` PaymentMethodCard, required — Payment method card details.
      - `brand` string, required — Card brand (visa, mastercard, amex, etc.)
      - `last4` string, required — Last 4 digits of the card
      - `exp_month` integer, required — Expiration month
      - `exp_year` integer, required — Expiration year
    - `is_default` boolean, required — Whether this is the default payment method
    - `created_at` string, date-time, required — When the payment method was created
    - `first_name` string, nullable — Cardholder first name (from billing details)
    - `last_name` string, nullable — Cardholder last name (from billing details)
  - `default_payment_method_id` string, nullable — ID of the default payment method

---

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