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

# List Payment Methods

> Return active payment methods compatible with escrow (capture_method=manual).

Response:
    methods       — list of Stripe method slugs, e.g. ["card", "link"]
    card_networks — always ["visa", "mastercard", "amex"] when card is active



## OpenAPI

````yaml /openapi.json get /api/v1/payments/methods
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/payments/methods:
    get:
      tags:
        - Payments
      summary: List Payment Methods
      description: >-
        Return active payment methods compatible with escrow
        (capture_method=manual).


        Response:
            methods       — list of Stripe method slugs, e.g. ["card", "link"]
            card_networks — always ["visa", "mastercard", "amex"] when card is active
      operationId: list_payment_methods_api_v1_payments_methods_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````