The xMoney Crypto API allows merchants to integrate cryptocurrency payments into their platforms. It follows RESTful principles and uses JSON:API specifications.
Key features:
API keys are used for authentication to ensure secure communication. Webhooks are supported for real-time payment notifications.
https://docs.xmoney.com/_mock/crypto_api/reference/
https://merchants.api.crypto.xmoney.com/api/
https://merchants.api.sandbox.crypto.xmoney.com/api/
https://docs.xmoney.com/_mock/crypto_api/reference/stores/refunds/{payment_id}
https://merchants.api.crypto.xmoney.com/api/stores/refunds/{payment_id}
https://merchants.api.sandbox.crypto.xmoney.com/api/stores/refunds/{payment_id}
curl -i -X POST \
'https://docs.xmoney.com/_mock/crypto_api/reference/stores/refunds/{payment_id}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/vnd.api+json' \
-d '{}'
https://docs.xmoney.com/_mock/crypto_api/reference/stores/refunds/{payment_id}
https://merchants.api.crypto.xmoney.com/api/stores/refunds/{payment_id}
https://merchants.api.sandbox.crypto.xmoney.com/api/stores/refunds/{payment_id}
curl -i -X GET \
'https://docs.xmoney.com/_mock/crypto_api/reference/stores/refunds/{payment_id}' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "data": { "id": "c8d65cc2-0c82-429a-95ea-3f65011fc2cc", "type": "refunds", "attributes": { … } } }