---
title: "List Payment Methods"
method: GET
path: "/api/v1/payment-methods"
tags: ["Payment Methods"]
---

# List Payment Methods

`GET /api/v1/payment-methods`

## Query parameters

- `cursor` string
- `limit` string

## Response `200`

Successful response

- object
  - `data` PaymentMethodClientSelectSchema[], required
    - `id` string, required
    - `createdAt` integer, required — Epoch milliseconds.
    - `updatedAt` integer, required — Epoch milliseconds.
    - `livemode` boolean, required
    - `customerId` string, required
    - `pricingModelId` string, required
    - `billingDetails` object, required
      - `name` string, nullable
      - `email` string, nullable
      - `address` object, required
        - `name` string, nullable
        - `line1` string, nullable
        - `line2` string, nullable
        - `city` string, nullable
        - `state` string, nullable
        - `postal_code` string, nullable
        - `country` string, required
        - `address` object, nullable
          - `name` string, nullable
          - `line1` string, nullable
          - `line2` string, nullable
          - `city` string, nullable
          - `state` string, nullable
          - `postal_code` string, nullable
          - `country` string, required
    - `type` 'card' | 'link' | 'us_bank_account' | 'sepa_debit', required
    - `default` boolean, required
    - `paymentMethodData` object, required
    - `metadata` Metadata — JSON object
  - `currentCursor` string
  - `nextCursor` string
  - `hasMore` boolean, required
  - `total` number, required

## Other responses

- `400` — Invalid input data
- `401` — Authorization not provided
- `403` — Insufficient access
- `404` — Not found
- `500` — Internal server error

---

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