xMoney Crypto API (1.1.0)
The xMoney Crypto API allows merchants to integrate cryptocurrency payments into their platforms. It follows RESTful principles and uses JSON:API specifications.
Key features:
- Resource-oriented URLs
- JSON responses
- Standard HTTP response codes and verbs
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/
- Development
https://docs.xmoney.com/_mock/crypto_api/reference/stores/refunds/{payment_id}
- Production server (live)
https://merchants.api.crypto.xmoney.com/api/stores/refunds/{payment_id}
- Sandbox server (test)
https://merchants.api.sandbox.crypto.xmoney.com/api/stores/refunds/{payment_id}
- curl
- JavaScript
- Node.js
- PHP
- Python
- Java
- Ruby
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 '{}'
- Development
https://docs.xmoney.com/_mock/crypto_api/reference/stores/refunds/{payment_id}
- Production server (live)
https://merchants.api.crypto.xmoney.com/api/stores/refunds/{payment_id}
- Sandbox server (test)
https://merchants.api.sandbox.crypto.xmoney.com/api/stores/refunds/{payment_id}
- curl
- JavaScript
- Node.js
- PHP
- Python
- Java
- Ruby
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": { … } } }