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

# GET Payment Methods

> List current user's payment methods



## OpenAPI

````yaml GET /v1/users/{user_id}/payment-methods
openapi: 3.0.3
info:
  title: NFT Service APIs
  description: ''
  license:
    name: ''
  version: '2.0'
servers:
  - url: https://api.bitski.com
security: []
paths:
  /v1/users/{user_id}/payment-methods:
    get:
      tags:
        - Commerce
      summary: List current user's payment methods
      description: List current user's payment methods
      operationId: list_payment_methods
      parameters:
        - name: user_id
          in: path
          description: The id of the current user
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: List of payment methods
          content:
            application/json:
              schema:
                type: object
                required:
                  - paymentMethods
                properties:
                  paymentMethods:
                    type: array
                    items:
                      $ref: '#/components/schemas/PaymentMethod'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
              example:
                error:
                  code: 401
                  message: The request could not be authorized
                  request: 3fa85f64-5717-4562-b3fc-2c963f66afa6
                  status: Unauthorized
      security:
        - oauth2:
            - commerce
components:
  schemas:
    PaymentMethod:
      type: object
      required:
        - id
        - cardLast4
        - cardBrand
      properties:
        cardBrand:
          type: string
          description: The brand of the card
          example: visa
        cardLast4:
          type: string
          description: Last 4 digits of the card number
          example: '1111'
        id:
          type: string
          description: Id of the payment method
          example: pm_1NoBH4E7964oeAEGtfSbXJ5v
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://account.bitski.com/oauth2/token
          scopes:
            apps: manage my applications
      description: Client credentials

````