> ## Documentation Index
> Fetch the complete documentation index at: https://docs.r28.ai/charter/llms.txt
> Use this file to discover all available pages before exploring further.

# payment_methods_list

> List payment methods. Without a type, every type except 'custom' is returned.

<div className="tool-route"><span className="tool-row-method" data-method="GET">GET</span><code>{"https://api.stripe.com/v1/payment_methods"}</code></div>

```python stripe_payment_methods_list.py theme={null}
from charter.packs import stripe

result = await stripe.payment_methods_list.ainvoke({})
```

<Note>
  Pages by cursor: `data[-1].id` is sent back as `starting_after`.
</Note>

## Query parameters

<div className="reference-table">
  | Field            | Type                                                                           | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
  | ---------------- | ------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | `limit`          | `integer`                                                                      | A limit on the number of objects to be returned, between 1 and 100. Defaults to 10. <span className="field-constraints">≥ 1; ≤ 100; defaults to `10`</span>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
  | `startingAfter`  | `string`                                                                       | A cursor for use in pagination: an object ID that defines your place in the list. To get the next page, pass the id of the last object in the current page.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
  | `endingBefore`   | `string`                                                                       | A cursor for use in pagination: an object ID that defines your place in the list. Returns the page before the named object. Mutually exclusive with starting\_after.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
  | `type`           | `string`                                                                       | Only return payment methods of this type. Stripe adds types over time, so this is not a closed set; documented values are: acss\_debit, affirm, afterpay\_clearpay, alipay, alma, amazon\_pay, au\_becs\_debit, bacs\_debit, bancontact, billie, bizum, blik, boleto, card, cashapp, crypto, custom, customer\_balance, eps, fpx, giropay, grabpay, ideal, kakao\_pay, klarna, konbini, kr\_card, link, mb\_way, mobilepay, multibanco, naver\_pay, nz\_bank\_account, oxxo, p24, pay\_by\_bank, payco, paynow, paypal, payto, pix, promptpay, revolut\_pay, samsung\_pay, satispay, scalapay, sepa\_debit, sofort, sunbit, swish, twint, upi, us\_bank\_account, wechat\_pay, zip. |
  | `customer`       | `string`                                                                       | Only return payment methods for this customer ID.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
  | `allowRedisplay` | [AllowRedisplay](/charter/charter/packs/stripe/payment_methods/objects#allowredisplay) | Filter by whether the method may be shown to the customer again: 'always', 'limited' (only in a specific context, such as one subscription), or 'unspecified'.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
</div>
