POST /payment/services
Returns the list of available payment services with network limits and commission info. Requires authentication.
Request
Section titled “Request”POST /payment/servicesNo request body is required.
Example
Section titled “Example”# Compute sign: MD5(base64(JSON.stringify(body)) + API_KEY)curl -X POST https://api.nearpayments.io/cryptomus/v1/payment/services \ -H "Content-Type: application/json" \ -H "merchant: YOUR_MERCHANT_UUID" \ -H "sign: COMPUTED_SIGN" \ -d '{}'Response
Section titled “Response”{ "state": 0, "result": [ { "network": "tron", "currency": "USDT", "is_available": true, "limit": { "min_amount": "1.00", "max_amount": "1000000.00" }, "commission": { "fee_amount": "0.00", "percent": "1.00" } }, { "network": "eth", "currency": "ETH", "is_available": true, "limit": { "min_amount": "0.005", "max_amount": "500.00" }, "commission": { "fee_amount": "0.00", "percent": "1.00" } } ]}