---
title: "List Customer Payment Methods"
method: GET
path: "/v1/customer-portal/customers/me/payment-methods"
tags: ["customer_portal", "customers", "public"]
---

# List Customer Payment Methods

`GET /v1/customer-portal/customers/me/payment-methods`

Get saved payment methods of the authenticated customer.

## Query parameters

- `page` integer — Page number, defaults to 1.
- `limit` integer — Size of a page, defaults to 10. Maximum is 100.

## Response `200`

Successful Response

- ListResourceCustomerPaymentMethod
  - `items` CustomerPaymentMethod[], required
    - union
      - PaymentMethodCard
        - `id` string, uuid4, required — The ID of the object.
        - `created_at` string, date-time, required — Creation timestamp of the object.
        - `modified_at` string, date-time, nullable, required — Last modification timestamp of the object.
        - `processor` 'stripe', required
        - `customer_id` string, uuid4, required
        - `type` 'card', required
        - `method_metadata` PaymentMethodCardMetadata, required
          - `brand` string, required
          - `last4` string, required
          - `exp_month` integer, required
          - `exp_year` integer, required
          - `wallet` string, nullable
      - PaymentMethodGeneric
        - `id` string, uuid4, required — The ID of the object.
        - `created_at` string, date-time, required — Creation timestamp of the object.
        - `modified_at` string, date-time, nullable, required — Last modification timestamp of the object.
        - `processor` 'stripe', required
        - `customer_id` string, uuid4, required
        - `type` string, required
  - `pagination` Pagination, required
    - `total_count` integer, required
    - `max_page` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/polar/apis/polar-api.md) · [All operations](https://skmtc.net/polar/apis/polar-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/polar/polar-api/revisions/77e4ef94fcc3/schema)
