---
title: "List all Payment Sources"
method: GET
path: "/2024-09/payment_sources"
tags: ["Payment Sources"]
---

# List all Payment Sources

`GET /2024-09/payment_sources`

Retrieve a list of payment sources.

Required authorization scope: `public.payment_source:read`

## Query parameters

- `page` integer
- `per_page` integer

## Response `200`

list of payment sources

- PaymentSourceList
  - `payment_sources` PaymentSource[]
    - `id` string, uuid — Payment source id in Easyship
    - `third_party_source_id` string — Third party payment source id
    - `payment_method_type` 'card' | 'bank_account'
    - `bank_account` object
      - `bank_name` string — Bank name
      - `holder_name` string — Account holder name
      - `last_four_digits` string — Last four digits of bank account number
      - `routing_number` string — Routing number
      - `is_verified` boolean — Whether the bank account is verified by Stripe
    - `card` object
      - `brand` string — Credit card brand
      - `expiration_year` string — The expiration year of the card
      - `expiration_month` string — The expiration month of the card
      - `last_four_digits` string — Last four digits of credit card
      - `holder_name` string, nullable — Card holder name
  - `meta` MetaWithPagination
    - `pagination` Pagination — Pagination
      - `next` integer, nullable
      - `count` integer, nullable — The total number of items. The `null` value is used with countless pagination (used for faster response on large datasets, like shipments).
      - `page` integer — Current page
    - `request_id` string — An unique ID represent the request.

---

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