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

# List Payment Methods

> List all enabled payment methods and gateways.



## OpenAPI

````yaml /api-reference/openapi/user-api.yaml get /payment-methods
openapi: 3.0.3
info:
  title: PapelShip User API
  description: >
    # Introduction

    Welcome to the PapelShip User API. This API allows store owners to
    programmatically manage their store's inventory, orders, and customers.


    # Authentication

    All API requests must be authenticated using your **API Key** and **Store
    Hash**.

    Include these in the request headers:


    | Header | Description |

    | :--- | :--- |

    | `x-api-key` | Your personal API Key found in dashboard settings. |

    | `x-store-hash` | The unique identifier for your store. |
  version: 1.0.0
  contact:
    name: PapelShip Support
    url: https://app.papelship.com/support
    email: support@papelship.com
servers:
  - url: https://app.papelship.com/api_user/api/v1
    description: Production Server
security:
  - ApiKeyAuth: []
    StoreHashAuth: []
tags:
  - name: Analytics
    description: 📊 View store performance, revenue, and visitor statistics.
  - name: Products
    description: 📦 Manage your product inventory, pricing, and details.
  - name: Categories
    description: 📂 Organize products into categories.
  - name: Groups
    description: 📑 Create and manage product groups/collections.
  - name: Coupons
    description: 🎟️ Manage discount codes and promotions.
  - name: Customers
    description: 👥 View customer details and purchase history.
  - name: Invoices
    description: 🧾 Manage orders, process refunds, and view transaction details.
  - name: Reviews
    description: ⭐ Access customer feedback and ratings.
  - name: Checkout
    description: 🛒 Programmatic checkout and order creation.
  - name: Payment Methods
    description: 💳 Configure crypto wallets and payment gateways.
  - name: System
    description: ⚙️ System status and health checks.
paths:
  /payment-methods:
    get:
      tags:
        - Payment Methods
      summary: List Payment Methods
      description: List all enabled payment methods and gateways.
      operationId: listPaymentMethods
      responses:
        '200':
          description: List of payment methods
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  payment_methods:
                    $ref: '#/components/schemas/PaymentMethods'
components:
  schemas:
    PaymentMethods:
      type: object
      properties:
        crypto:
          type: array
          items:
            type: object
            properties:
              symbol:
                type: string
                example: LTC
              address:
                type: string
                example: LtcWalletAddress...
              network:
                type: string
                example: LTC
              is_enabled:
                type: integer
                example: 1
        gateways:
          type: object
          description: Key-value map of enabled gateways and their public settings
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your PapelShip API Key
    StoreHashAuth:
      type: apiKey
      in: header
      name: x-store-hash
      description: Your Store Hash ID

````