Skip to content

POST /payment/services

Returns the list of available payment services with network limits and commission info. Requires authentication.

POST /payment/services

No request body is required.

Terminal window
# 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 '{}'
{
"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"
}
}
]
}