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

# List payment methods

> List all Stripe payment methods for the authenticated organization, including which one is the default.

**Rate limit:** 120 requests burst, 60 requests/minute sustained.



## OpenAPI

````yaml /api-reference/openapi.json get /execution/payment-methods/v1
openapi: 3.1.0
info:
  title: Pure Public API
  description: >-
    Public API for accessing Pure marketplace data including products, spot
    prices, and more.
  version: 2.0.0
  license:
    name: Proprietary
servers:
  - url: https://api.collectpure.com/
    description: Production server
  - url: https://sandbox.api.collectpure.com/
    description: Sandbox server
security:
  - apiKey: []
tags:
  - name: Root
    description: API information and status
  - name: Products
    description: >-
      Enriched product endpoints — full product details, search, and catalog
      metadata
  - name: Listings
    description: Listing management — create, update, deactivate, list, and view statistics
  - name: Offers
    description: Offer management — create, update, deactivate, list, and view statistics
  - name: Orders
    description: Purchase and sale order management for authenticated organizations
  - name: Marketplace
    description: Spot prices, marketplace statistics, shipping dates, and sitemap data
  - name: Organization
    description: Organization details and settings management
  - name: Inventory
    description: >-
      Inventory management — view items and aggregate statistics for your
      organization
  - name: Products (Legacy)
    description: Legacy product endpoints — use the enriched Products endpoints instead
  - name: Listings (Legacy)
    description: Legacy listing endpoints — use Orderbook endpoints instead
  - name: Offers (Legacy)
    description: Legacy offer endpoints — use Orderbook endpoints instead
  - name: Execution - Buy
    description: Buy execution — quotes, payment methods, and order placement
  - name: Execution - Sell
    description: Sell execution — quotes, payout methods, and order placement
  - name: Sandbox
    description: >-
      Sandbox-only endpoints for discovering test data — not available in
      production
paths:
  /execution/payment-methods/v1:
    get:
      tags:
        - Execution - Buy
      summary: List payment methods
      description: >-
        List all Stripe payment methods for the authenticated organization,
        including which one is the default.


        **Rate limit:** 120 requests burst, 60 requests/minute sustained.
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: object
                    properties:
                      defaultPaymentMethodId:
                        anyOf:
                          - type: string
                          - type: 'null'
                        description: The organization's default payment method ID
                      paymentMethods:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                              description: >-
                                Stripe payment method ID -- pass this as
                                paymentMethodId when executing a buy
                            type:
                              type: string
                              description: Stripe type (e.g. us_bank_account, card)
                            paymentMethod:
                              type: string
                              enum:
                                - stripe_ach
                                - stripe
                              description: >-
                                The paymentMethod value to pass when executing a
                                buy
                            isDefault:
                              type: boolean
                              description: >-
                                Whether this is the organization's default
                                payment method
                            card:
                              anyOf:
                                - type: object
                                  properties:
                                    brand:
                                      type: string
                                    last4:
                                      type: string
                                    expMonth:
                                      type: number
                                    expYear:
                                      type: number
                                  required:
                                    - brand
                                    - last4
                                    - expMonth
                                    - expYear
                                  additionalProperties: false
                                - type: 'null'
                            bankAccount:
                              anyOf:
                                - type: object
                                  properties:
                                    bankName:
                                      anyOf:
                                        - type: string
                                        - type: 'null'
                                    last4:
                                      type: string
                                    accountType:
                                      anyOf:
                                        - type: string
                                        - type: 'null'
                                  required:
                                    - bankName
                                    - last4
                                    - accountType
                                  additionalProperties: false
                                - type: 'null'
                          required:
                            - id
                            - type
                            - paymentMethod
                            - isDefault
                            - card
                            - bankAccount
                          additionalProperties: false
                    required:
                      - defaultPaymentMethodId
                      - paymentMethods
                    additionalProperties: false
                required:
                  - success
                  - data
                additionalProperties: false
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: API key for authentication

````