List all Payment Methods

Returns a list of PaymentMethods.

Query Parameters
  • limit
    Type: integer

    Integer numbers.

  • last_key
    Type: string
  • customer
    Type: string

    The ID of the customer whose PaymentMethods will be retrieved

  • id
    Type: string
Responses
  • application/json
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for get/v1/payment_methods
curl https://api.paypercut.io/v1/payment_methods \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "items": [
    {
      "type": "card",
      "card": {
        "cardholder_name": null,
        "brand": "string",
        "country": null,
        "issuer": null,
        "display_brand": null,
        "exp_month": 1,
        "exp_year": 1,
        "fingerprint": null,
        "funding": "string",
        "segment": "string",
        "iin": "string",
        "last4": "string",
        "wallet": {
          "dynamic_last4": null,
          "type": "apple_pay"
        },
        "three_d_secure_usage": {
          "supported": true
        }
      },
      "billing_details": {
        "email": null,
        "name": null,
        "phone": null,
        "address": {
          "city": null,
          "country": null,
          "line1": null,
          "line2": null,
          "postal_code": null,
          "state": null
        }
      },
      "metadata": {
        "additionalProperty": "string"
      },
      "customer": "string",
      "id": "string",
      "livemode": true,
      "created": "2026-04-02T14:45:59.065Z"
    }
  ],
  "last_key": "string"
}