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/
The type of institution this platform represents (WALLET_PROVIDER, FIAT_INSTITUTION, or DIGITAL_EXCHANGE).
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms
https://[domainPrefix].ripplexcurrent.com/v4/config/platforms
curl -i -X POST \
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"platform_type": "WALLET_PROVIDER",
"description": "string",
"institution": "string",
"servicer_code": "string"
}'{ "platform_id": "f41a0584-7f4a-481e-9327-001efe2ebd2c", "name": "string", "platform_type": "WALLET_PROVIDER", "description": "string", "institution": "string", "servicer_code": "string" }
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms
https://[domainPrefix].ripplexcurrent.com/v4/config/platforms
curl -i -X GET \
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms \
-H 'Authorization: YOUR_API_KEY_HERE'[ { "platform_id": "f41a0584-7f4a-481e-9327-001efe2ebd2c", "name": "string", "platform_type": "WALLET_PROVIDER", "description": "string", "institution": "string", "servicer_code": "string" } ]
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/{platform_id}
https://[domainPrefix].ripplexcurrent.com/v4/config/platforms/{platform_id}
curl -i -X GET \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/{platform_id}' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "platform_id": "f41a0584-7f4a-481e-9327-001efe2ebd2c", "name": "string", "platform_type": "WALLET_PROVIDER", "description": "string", "institution": "string", "servicer_code": "string" }
The type of institution this platform represents (WALLET_PROVIDER, FIAT_INSTITUTION, or DIGITAL_EXCHANGE).
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/{platform_id}
https://[domainPrefix].ripplexcurrent.com/v4/config/platforms/{platform_id}
curl -i -X PUT \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/{platform_id}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"platform_type": "WALLET_PROVIDER",
"description": "string",
"institution": "string",
"servicer_code": "string"
}'{ "platform_id": "f41a0584-7f4a-481e-9327-001efe2ebd2c", "name": "string", "platform_type": "WALLET_PROVIDER", "description": "string", "institution": "string", "servicer_code": "string" }
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/{platform_id}
https://[domainPrefix].ripplexcurrent.com/v4/config/platforms/{platform_id}
curl -i -X DELETE \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/{platform_id}' \
-H 'Authorization: YOUR_API_KEY_HERE'The unique identifier for the RippleNet platform where this account is defined.
Unique reference identifier for the real world account which is represented by this platform account.
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/accounts
https://[domainPrefix].ripplexcurrent.com/v4/config/platforms/accounts
curl -i -X POST \
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/accounts \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"platform_id": "f41a0584-7f4a-481e-9327-001efe2ebd2c",
"description": "string",
"external_account_id": "string",
"currency": "str"
}'{ "platform_account_id": "8301de71-1ac1-4edb-8119-73ff911eb9ad", "name": "string", "platform_id": "f41a0584-7f4a-481e-9327-001efe2ebd2c", "description": "string", "external_account_id": "string", "currency": "string", "balance": 0 }
The page number for paginated results. The value is zero-based, where 0 represents the first page.<br/> Set it to 0 to get the first page of results.
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/accounts
https://[domainPrefix].ripplexcurrent.com/v4/config/platforms/accounts
curl -i -X GET \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/accounts?page=0&size=10' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "first": true, "last": true, "number": 0, "numberOfElements": 0, "size": 0, "totalElements": 0, "totalPages": 0, "sort": [ { … } ], "content": [ { … } ] }
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/accounts/{platform_account_id}
https://[domainPrefix].ripplexcurrent.com/v4/config/platforms/accounts/{platform_account_id}
curl -i -X GET \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/accounts/{platform_account_id}' \
-H 'Authorization: YOUR_API_KEY_HERE'{ "platform_account_id": "8301de71-1ac1-4edb-8119-73ff911eb9ad", "name": "string", "platform_id": "f41a0584-7f4a-481e-9327-001efe2ebd2c", "description": "string", "external_account_id": "string", "currency": "string", "balance": 0 }
The unique identifier for the RippleNet platform where this account is defined.
Unique reference identifier for the real world account which is represented by this platform account.
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/accounts/{platform_account_id}
https://[domainPrefix].ripplexcurrent.com/v4/config/platforms/accounts/{platform_account_id}
curl -i -X PUT \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/accounts/{platform_account_id}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"platform_id": "f41a0584-7f4a-481e-9327-001efe2ebd2c",
"description": "string",
"external_account_id": "string",
"currency": "str"
}'{ "platform_account_id": "8301de71-1ac1-4edb-8119-73ff911eb9ad", "name": "string", "platform_id": "f41a0584-7f4a-481e-9327-001efe2ebd2c", "description": "string", "external_account_id": "string", "currency": "string", "balance": 0 }
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/accounts/{platform_account_id}
https://[domainPrefix].ripplexcurrent.com/v4/config/platforms/accounts/{platform_account_id}
curl -i -X DELETE \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/platforms/accounts/{platform_account_id}' \
-H 'Authorization: YOUR_API_KEY_HERE'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/monitor/platform/accounts/balances
https://[domainPrefix].ripplexcurrent.com/v4/monitor/platform/accounts/balances
curl -i -X GET \
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/monitor/platform/accounts/balances \
-H 'Authorization: YOUR_API_KEY_HERE'{ "platforms": [ { … } ] }
The lower bound of the date-time range you want to return statement information for, as an ISO-8601 timestamp in UTC. For example, 2018-08-06T23:13:55.997Z.
The upper bound of the date-time range you want to return statement information for, as an ISO-8601 timestamp in UTC For example, 2018-08-06T23:15:13.218Z.
The page number for paginated results. The value is zero-based, where 0 represents the first page.<br/> Set it to 0 to get the first page of results.
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/monitor/platform/accounts/{platformAccountId}/statement
https://[domainPrefix].ripplexcurrent.com/v4/monitor/platform/accounts/{platformAccountId}/statement
curl -i -X GET \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/monitor/platform/accounts/{platformAccountId}/statement?start-date=string&end-date=string&page=0&size=10' \
-H 'Authorization: YOUR_API_KEY_HERE'Successfully returned statement for a specified platform account.
Lower bound of the date-time range the statement covers, as an ISO-8601 timestamp in UTC.
Upper bound of the date-time range the statement covers, as an ISO-8601 timestamp in UTC.
Time at which the statement was generated, as an ISO-8601 timestamp in UTC.
Provides a content array of statement record objects and a set of pagination information fields.
Provides an array of statement record objects.
ID of the payment or transfer that caused an account balance change.
Type of transaction that caused an account balance change.
Time at which the transaction was created, as an ISO-8601 timestamp in UTC.
ID that the sender of a transaction can specify. Persisted on all xCurrent instances that participated in the transaction.
Internal identifier that the sender can optionally specify. Only visible to the sender. Only the sending xCurrent instance stores this ID.
The id from an exchange associated with a transaction involving an exchange account.
Hash representing the unique identifier for the transfer of funds in the XRP ledger.
The payment_id of the original payment that this payment returns, if this is a returned payment. Always set to null if the transaction_type is set to TRANSFER.
The payment_id of the return payment that returned this payment, if this is a returned payment. Always set to null if the transaction_type is set to TRANSFER.
Timestamp of when the balance change was created
RippleNet address of the sending account. Always set to null if the transaction_type is set to TRANSFER.
{ "account_name": "trans_usd_sf", "start_datetime": "2018-08-06T23:13:55.997Z", "end_datetime": "2020-08-06T23:13:55.997Z", "generated_at": "2019-10-01T21:58:23.621Z", "currency": "USD", "owner": "rn.us.ca.san_francisco", "opening_balance": 0, "closing_balance": -909, "transactions": { "content": [ … ], "total_elements": 1, "sort": "string", "first": true, "last": true, "number": 0, "numberOfElements": 1, "size": 10, "totalPages": 1 } }
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" }