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

# List Payment Methods



## OpenAPI

````yaml /api-reference/manexx-merchant-api.json get /api/v1/external/payment-methods
openapi: 3.0.3
info:
  title: Manexx Merchant API
  version: 0.1.0
  description: Public merchant integration API (X-Api-Key).
servers:
  - url: https://api.manexx.com
security: []
tags:
  - name: Merchant API
    description: Merchant API
paths:
  /api/v1/external/payment-methods:
    get:
      tags:
        - Merchant API
      summary: List Payment Methods
      operationId: list_payment_methods_api_v1_external_payment_methods_get
      parameters:
        - name: currency
          in: query
          required: false
          schema:
            title: Currency
            nullable: true
            type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Success_list_PaymentMethodExternalRead__'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    Success_list_PaymentMethodExternalRead__:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        data:
          items:
            $ref: '#/components/schemas/PaymentMethodExternalRead'
          type: array
          title: Data
      type: object
      required:
        - data
      title: Success[list[PaymentMethodExternalRead]]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PaymentMethodExternalRead:
      properties:
        id:
          type: integer
          title: Id
          description: Payment method id.
          example: 12
        name:
          type: string
          title: Name
          description: Method name.
          example: Monobank
        logo_url:
          title: Logo Url
          description: Method logo URL.
          nullable: true
          type: string
          example: https://cdn.manexx.com/methods/monobank.png
        currency:
          $ref: '#/components/schemas/CurrencyShort'
        min_amount:
          type: string
          title: Min Amount
          description: Minimum order amount (fiat).
          example: '100.00'
        max_amount:
          type: string
          title: Max Amount
          description: Maximum order amount (fiat).
          example: '29999.00'
        total_commission_percent:
          type: string
          title: Total Commission Percent
          description: Your category's total commission ceiling (client + merchant).
          example: '5.00'
        client_commission_percent:
          type: string
          title: Client Commission Percent
          description: Added on top of the order amount — paid by the customer.
          example: '2.00'
        merchant_commission_percent:
          type: string
          title: Merchant Commission Percent
          description: Withheld from your proceeds.
          example: '3.00'
      type: object
      required:
        - id
        - name
        - currency
        - min_amount
        - max_amount
        - total_commission_percent
        - client_commission_percent
        - merchant_commission_percent
      title: PaymentMethodExternalRead
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    CurrencyShort:
      properties:
        id:
          type: integer
          title: Id
          example: 1
        code:
          type: string
          title: Code
          description: Currency code.
          example: UAH
        name:
          type: string
          title: Name
          description: Currency name.
          example: Ukrainian hryvnia
        symbol:
          type: string
          title: Symbol
          description: Currency symbol.
          example: ₴
      type: object
      required:
        - id
        - code
        - name
        - symbol
      title: CurrencyShort
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-Api-Key

````