πŸ’³Get Payout Methods

Retrieves the list of available payout methods when selling cryptocurrency.

Merchants can also append their public key to filter down the endpoint to only display their available methods.

https://widget.swapped.com/api/v1/merchant/sell/get_payout_methods?YOUR_API_KEY_HERE

Response Structure:

 {
    "success": true,
    "data": {
      "US": [
        {
          "slug": "bank-transfer",
          "name": "Bank Transfer",
          "currency": ["USD"],
          "fee": 2.5,
          "base_fee": {
            "USD": 5
          },
          "min_amount": {
            "USD": 10
          }
        },
        {
          "slug": "paypal",
          "name": "PayPal",
          "currency": ["USD"],
          "fee": 3.0,
          "base_fee": {
            "USD": 2
          }
        }
      ],
      "EU": [
        {
          "slug": "sepa",
          "name": "SEPA Transfer",
          "currency": ["EUR"],
          "fee": 1.5,
          "base_fee": {
            "EUR": 3
          }
        },
        {
          "slug": "skrill",
          "name": "Skrill",
          "currency": ["EUR", "GBP", "USD"],
          "fee": 2.8,
          "base_fee": {
            "EUR": 2,
            "GBP": 2,
            "USD": 3
          }
        }
      ]
    }
  }

Data Fields Returned:

slug: Identifier for the payment method.

name: Name of the payment method.

currency: An array of supported fiat currencies.

fee: Processing fee in percentage.

base_fee: Fixed fee amounts per currency.

triangle-exclamation

Last updated