The RippleNet Server API provides you the ability to develop custom applications to manage or interact with your RippleNet instance.
Check out the best practices and tutorials.
The RippleNet Server API provides you the ability to develop custom applications to manage or interact with your RippleNet instance.
Check out the best practices and tutorials.
All API operations require a bearer access token for your target environment.<br>Learn how to request the access token.
The RippleNet Server API creates a dynamic [domainPrefix] that consists of {tenant}.{environment}.
Note: This example uses aperture as the tenant. Your tenant ID is different.
| Environment | Domaing Prefix | Domain | Base URL |
|---|---|---|---|
| Test | aperture.test | ripplexcurrent.com | https://aperture.test.ripplexcurrent.com |
| UAT | aperture.uat | ripplexcurrent.com | https://aperture.uat.ripplexcurrent.com |
| Production | aperture.prod | ripplexcurrent.com | https://aperture.prod.ripplexcurrent.com |
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/
https://[domainPrefix].ripplexcurrent.com/v4/
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/health
https://[domainPrefix].ripplexcurrent.com/v4/health
curl -i -X GET \
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/health \
-H 'Authorization: YOUR_API_KEY_HERE'{ "healthy": true, "services": [ { … } ], "detail": "Failed to perform health check" }
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/heartbeat
https://[domainPrefix].ripplexcurrent.com/v4/heartbeat
curl -i -X GET \
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/heartbeat \
-H 'Authorization: YOUR_API_KEY_HERE'Successful response.
Time at which the heartbeat was checked, as an ISO-8601 timestamp in UTC.
RippleNet address of the RippleNet server for which the heartbeat was checked. (Deprecated in favor of 'ripplenet_node' field, has exactly the same value).
RippleNet address of the RippleNet server for which the heartbeat was checked.
Provides a list of peer RippleNet addresses and their health statuses.
{ "time_checked": "2019-10-01", "xcurrent_node": "rn.us.ny.new_york", "ripplenet_node": "rn.us.ny.new_york", "peer_heartbeat_results": { "property1": "HEALTHY", "property2": "HEALTHY" }, "errors": [ "string" ] }
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/v4/orchestration/info
https://[domainPrefix].ripplexcurrent.com/v4/v4/orchestration/info
curl -i -X GET \
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/v4/orchestration/info \
-H 'Authorization: YOUR_API_KEY_HERE'{ "name": "Integration Module", "version": "1.2.0" }