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/orders
https://merchants.api.crypto.xmoney.com/api/stores/orders
https://merchants.api.sandbox.crypto.xmoney.com/api/stores/orders
curl -i -X POST \
https://docs.xmoney.com/_mock/crypto_api/reference/stores/orders \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/vnd.api+json' \
-d '{}'
{ "data": { "type": "orders_redirect", "id": "c8d65cc2-0c82-429a-95ea-3f65011fc2cc", "attributes": { … } } }
https://docs.xmoney.com/_mock/crypto_api/reference/stores/orders
https://merchants.api.crypto.xmoney.com/api/stores/orders
https://merchants.api.sandbox.crypto.xmoney.com/api/stores/orders
curl -i -X GET \
'https://docs.xmoney.com/_mock/crypto_api/reference/stores/orders?cursor=string&include=payment&limit=100' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "data": [ { … } ] }
https://docs.xmoney.com/_mock/crypto_api/reference/stores/orders/{id}
https://merchants.api.crypto.xmoney.com/api/stores/orders/{id}
https://merchants.api.sandbox.crypto.xmoney.com/api/stores/orders/{id}
curl -i -X GET \
'https://docs.xmoney.com/_mock/crypto_api/reference/stores/orders/{id}?include=string' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "data": { "id": "c8d65cc2-0c82-429a-95ea-3f65011fc2cc", "type": "orders", "attributes": { … } } }