Payment Methods
Retrieve available payment methods for your store.
List Payment Methods
GET
/api/v1/payment-methodsExample Request
curl -X GET https://ship.sellpass.io/api/v1/payment-methods \
-H "x-api-key: YOUR_API_KEY" \
-H "x-store-hash: YOUR_STORE_HASH"curl -X GET https://ship.sellpass.io/api/v1/payment-methods \
-H "x-api-key: YOUR_API_KEY" \
-H "x-store-hash: YOUR_STORE_HASH"Example Response
{
"success": true,
"payment_methods": {
"crypto": [
{
"symbol": "BTC",
"address": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
"network": "BTC",
"is_enabled": 1
},
{
"symbol": "LTC",
"address": "ltc1qrg2j6x5x5y5y5y5y5y5y5y5y5y5y5y5y5y5y5",
"network": "LTC",
"is_enabled": 1
}
],
"gateways": {
"stripe": { "enabled": true },
"paypal": { "enabled": false }
}
}
}{
"success": true,
"payment_methods": {
"crypto": [
{
"symbol": "BTC",
"address": "bc1qxy2kgdygjrsqtzq2n0yrf2493p83kkfjhx0wlh",
"network": "BTC",
"is_enabled": 1
},
{
"symbol": "LTC",
"address": "ltc1qrg2j6x5x5y5y5y5y5y5y5y5y5y5y5y5y5y5y5",
"network": "LTC",
"is_enabled": 1
}
],
"gateways": {
"stripe": { "enabled": true },
"paypal": { "enabled": false }
}
}
}