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 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/rates
https://[domainPrefix].ripplexcurrent.com/v4/config/rates
curl -i -X GET \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/rates?page=0&size=20' \
-H 'Authorization: YOUR_API_KEY_HERE'Successfully returned list of rates.
Sort details of this page
Provides an array of rate objects.
Unique identifier of the exchange rate.
<b>(DEPRECATED)</b> This property is deprecated. Refer to expires_at to determine rate expiration. <p>Amount of time in milliseconds that the rate is valid for after the rate's created_date value. For example, if the expiration_offset value is 100000 milliseconds, the rate expires 100000 milliseconds after this created_date value. If set to 0, the rate does not expire.</p>
Number of decimal places to which the exchange rate is calculated. For example, if the rate_scale value is set to 9 and the rate value is set to 1.25, the scaled value of the rate is 1.250000000.
If order_type is set to buy, this is set to the base currency. If order_type is set to sell, this is set to the counter currency.
If order_type is set to buy, this is set to the counter currency. If order_type is set to sell, this is set to the base currency.
Source ledger associated with the exchange rate.
Destination ledger associated with the exchange rate.
Account on the source ledger associated with rate.
Account on the destination ledger associated with rate.
Date and time at which the exchange rate was created, as an ISO-8601 timestamp in UTC. Fiat determines a rate's expiration date and time based on this value and expiration_offset value. For example, if the expiration_offset value is 100000 milliseconds, the rate expires 100000 milliseconds after this created_date value.
For a slab-based exchange rate, indicates the lower limit of the slab.
For a slab-based exchange rate, indicates the upper limit of the slab.
Indicates whether the rate is a live exchange rate (MARGIN) or an exchange rate manually configured by Ripple (RATE). If this value is MARGIN, then margin_type will show a value.
{ "first": true, "last": true, "number": 0, "numberOfElements": 0, "size": 0, "totalElements": 0, "totalPages": 0, "sort": [ { … } ], "content": [ { … } ] }
Creates an exchange rate for a specified currency pair.
Example - Applying a margin to the live FX rate:<br> A USD-GBP live FX rate of 0.80 is provided by a third-party rate provider and you want to reduce that rate by 20 BPS. In this API call, you would set "value_type": "MARGIN", then "margin_type": "BPS", and "rate": "20". After that, during the Get quotes call, the final FX rate will be calculated as 0.80*(1-(20/10000))=0.7984 and then applied during quote creation.
Set to the amount of time in milliseconds that the rate is valid for after the rate's created_date value. Set to 0 to indicate that the rate does not expire. The value returned in the response object for this field is null. Refer to the expires_at value in the response object to verify your expiration offset timing.
This value of this field represents either rate or margin based on what you specify in the value_type field.
If you specify value_type=rate, set the value of this field to the exchange rate for a base and counter currency. The rate can use up to 6 decimal places.
If you specify value_type=margin, set the value of this field depending on the unit of margin you specified in the margin_type field.
Use the ledger request object to create an exchange rate that applies to exchanges between a specific source ledger and destination ledger.
Use the account request object to create an exchange rate that applies to exchanges between a specific source ledger account and destination ledger account.
Set to the source ledger associated with the exchange rate.
Set to the destination ledger associated with the exchange rate.
Set to the account on the source ledger associated with the rate.
To create a slab-based exchange rate, provide the lower limit of the slab. You must also provide an upper_limit value.
To create a slab-based exchange rate, provide the upper limit of the slab. You must also provide a lower_limit value.
Specify whether you want to use a live exchange rate (MARGIN) or an exchange rate manually configured by Ripple (RATE). If you set this value to MARGIN, you must also provide margin_type.
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/rates
https://[domainPrefix].ripplexcurrent.com/v4/config/rates
curl -i -X POST \
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/rates \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"expiration_offset": 95000,
"order_type": "buy",
"rate": 0.89,
"base_currency": "USD",
"counter_currency": "GBP",
"ledger": {
"source_ledger": "rn.eur.uk.london",
"destination_ledger": "rn.eur.uk.london"
},
"account": {
"source_ledger": "rn.eur.uk.london",
"destination_ledger": "rn.eur.uk.london",
"source_ledger_account": "alias_usd_lon",
"destination_ledger_account": "conct_gbp_lon"
},
"lower_limit": 0,
"upper_limit": 1000,
"payout_method": "LOCAL_RAILS",
"value_type": "MARGIN",
"margin_type": "BPS"
}'Successfully created rate.
Unique identifier of the exchange rate.
<b>(DEPRECATED)</b> This property is deprecated. Refer to expires_at to determine rate expiration. <p>Amount of time in milliseconds that the rate is valid for after the rate's created_date value. For example, if the expiration_offset value is 100000 milliseconds, the rate expires 100000 milliseconds after this created_date value. If set to 0, the rate does not expire.</p>
Number of decimal places to which the exchange rate is calculated. For example, if the rate_scale value is set to 9 and the rate value is set to 1.25, the scaled value of the rate is 1.250000000.
If order_type is set to buy, this is set to the base currency. If order_type is set to sell, this is set to the counter currency.
If order_type is set to buy, this is set to the counter currency. If order_type is set to sell, this is set to the base currency.
Source ledger associated with the exchange rate.
Destination ledger associated with the exchange rate.
Account on the source ledger associated with rate.
Account on the destination ledger associated with rate.
Date and time at which the exchange rate was created, as an ISO-8601 timestamp in UTC. Fiat determines a rate's expiration date and time based on this value and expiration_offset value. For example, if the expiration_offset value is 100000 milliseconds, the rate expires 100000 milliseconds after this created_date value.
For a slab-based exchange rate, indicates the lower limit of the slab.
For a slab-based exchange rate, indicates the upper limit of the slab.
Indicates whether the rate is a live exchange rate (MARGIN) or an exchange rate manually configured by Ripple (RATE). If this value is MARGIN, then margin_type will show a value.
{ "rate_id": "328b3e50-7983-46d5-94a0-ef004d78db1d", "expiration_offset": 95000, "order_type": "buy", "rate_scale": 9, "rate": 0.89, "base_currency": "USD", "counter_currency": "GBP", "source_currency": "USD", "destination_currency": "GBP", "source_ledger": "rn.eur.uk.london", "destination_ledger": "rn.eur.uk.london", "source_ledger_account": "alias_usd_lon", "destination_ledger_account": "conct_gbp_lon", "created_date": "2019-08-24T14:15:22Z", "expires_at": "2019-08-24T14:15:22Z", "lower_limit": 0, "upper_limit": 1000, "payout_method": "LOCAL_RAILS", "value_type": "MARGIN", "margin_type": "BPS" }
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/rates/{rate_id}
https://[domainPrefix].ripplexcurrent.com/v4/config/rates/{rate_id}
curl -i -X GET \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/rates/{rate_id}' \
-H 'Authorization: YOUR_API_KEY_HERE'Sucessfully returned rate.
Unique identifier of the exchange rate.
<b>(DEPRECATED)</b> This property is deprecated. Refer to expires_at to determine rate expiration. <p>Amount of time in milliseconds that the rate is valid for after the rate's created_date value. For example, if the expiration_offset value is 100000 milliseconds, the rate expires 100000 milliseconds after this created_date value. If set to 0, the rate does not expire.</p>
Number of decimal places to which the exchange rate is calculated. For example, if the rate_scale value is set to 9 and the rate value is set to 1.25, the scaled value of the rate is 1.250000000.
If order_type is set to buy, this is set to the base currency. If order_type is set to sell, this is set to the counter currency.
If order_type is set to buy, this is set to the counter currency. If order_type is set to sell, this is set to the base currency.
Source ledger associated with the exchange rate.
Destination ledger associated with the exchange rate.
Account on the source ledger associated with rate.
Account on the destination ledger associated with rate.
Date and time at which the exchange rate was created, as an ISO-8601 timestamp in UTC. Fiat determines a rate's expiration date and time based on this value and expiration_offset value. For example, if the expiration_offset value is 100000 milliseconds, the rate expires 100000 milliseconds after this created_date value.
For a slab-based exchange rate, indicates the lower limit of the slab.
For a slab-based exchange rate, indicates the upper limit of the slab.
Indicates whether the rate is a live exchange rate (MARGIN) or an exchange rate manually configured by Ripple (RATE). If this value is MARGIN, then margin_type will show a value.
{ "rate_id": "328b3e50-7983-46d5-94a0-ef004d78db1d", "expiration_offset": 95000, "order_type": "buy", "rate_scale": 9, "rate": 0.89, "base_currency": "USD", "counter_currency": "GBP", "source_currency": "USD", "destination_currency": "GBP", "source_ledger": "rn.eur.uk.london", "destination_ledger": "rn.eur.uk.london", "source_ledger_account": "alias_usd_lon", "destination_ledger_account": "conct_gbp_lon", "created_date": "2019-08-24T14:15:22Z", "expires_at": "2019-08-24T14:15:22Z", "lower_limit": 0, "upper_limit": 1000, "payout_method": "LOCAL_RAILS", "value_type": "MARGIN", "margin_type": "BPS" }
Updates an existing exchange rate. With this call, you can change value_type from RATE to MARGIN (and vice versa), change the actual rate value of the specified value type, or both.
Example - Updating an existing margin applied to the live FX rate:<br> A USD-GBP live FX rate of 0.80 is provided by a third-party rate provider and you currently reduce that rate by 20 BPS. You now want to change it and reduce it by 10 BPS instead. To do so, set "rate": "10" in the request. Once the change is applied, the final FX rate is calculated as 0.80*(1-(10/10000))=0.7992 during the Get quotes call, and then applied during quote creation.
Set to the amount of time in milliseconds that the rate is valid for after the rate's created_date value. Set to 0 to indicate that the rate does not expire. The value returned in the response object for this field is null. Refer to the expires_at value in the response object to verify your expiration offset timing.
This value of this field represents either rate or margin based on what you specify in the value_type field.
If you specify value_type=rate, set the value of this field to the exchange rate for a base and counter currency. The rate can use up to 6 decimal places.
If you specify value_type=margin, set the value of this field depending on the unit of margin you specified in the margin_type field.
Use the ledger request object to create an exchange rate that applies to exchanges between a specific source ledger and destination ledger.
Use the account request object to create an exchange rate that applies to exchanges between a specific source ledger account and destination ledger account.
Set to the source ledger associated with the exchange rate.
Set to the destination ledger associated with the exchange rate.
Set to the account on the source ledger associated with the rate.
To create a slab-based exchange rate, provide the lower limit of the slab. You must also provide an upper_limit value.
To create a slab-based exchange rate, provide the upper limit of the slab. You must also provide a lower_limit value.
Specify whether you want to use a live exchange rate (MARGIN) or an exchange rate manually configured by Ripple (RATE). If you set this value to MARGIN, you must also provide margin_type.
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/rates/{rate_id}
https://[domainPrefix].ripplexcurrent.com/v4/config/rates/{rate_id}
curl -i -X PUT \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/rates/{rate_id}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"expiration_offset": 95000,
"order_type": "buy",
"rate": 0.89,
"base_currency": "USD",
"counter_currency": "GBP",
"ledger": {
"source_ledger": "rn.eur.uk.london",
"destination_ledger": "rn.eur.uk.london"
},
"account": {
"source_ledger": "rn.eur.uk.london",
"destination_ledger": "rn.eur.uk.london",
"source_ledger_account": "alias_usd_lon",
"destination_ledger_account": "conct_gbp_lon"
},
"lower_limit": 0,
"upper_limit": 1000,
"payout_method": "LOCAL_RAILS",
"value_type": "MARGIN",
"margin_type": "BPS"
}'Successfully updated rate.
Unique identifier of the exchange rate.
<b>(DEPRECATED)</b> This property is deprecated. Refer to expires_at to determine rate expiration. <p>Amount of time in milliseconds that the rate is valid for after the rate's created_date value. For example, if the expiration_offset value is 100000 milliseconds, the rate expires 100000 milliseconds after this created_date value. If set to 0, the rate does not expire.</p>
Number of decimal places to which the exchange rate is calculated. For example, if the rate_scale value is set to 9 and the rate value is set to 1.25, the scaled value of the rate is 1.250000000.
If order_type is set to buy, this is set to the base currency. If order_type is set to sell, this is set to the counter currency.
If order_type is set to buy, this is set to the counter currency. If order_type is set to sell, this is set to the base currency.
Source ledger associated with the exchange rate.
Destination ledger associated with the exchange rate.
Account on the source ledger associated with rate.
Account on the destination ledger associated with rate.
Date and time at which the exchange rate was created, as an ISO-8601 timestamp in UTC. Fiat determines a rate's expiration date and time based on this value and expiration_offset value. For example, if the expiration_offset value is 100000 milliseconds, the rate expires 100000 milliseconds after this created_date value.
For a slab-based exchange rate, indicates the lower limit of the slab.
For a slab-based exchange rate, indicates the upper limit of the slab.
Indicates whether the rate is a live exchange rate (MARGIN) or an exchange rate manually configured by Ripple (RATE). If this value is MARGIN, then margin_type will show a value.
{ "rate_id": "328b3e50-7983-46d5-94a0-ef004d78db1d", "expiration_offset": 95000, "order_type": "buy", "rate_scale": 9, "rate": 0.89, "base_currency": "USD", "counter_currency": "GBP", "source_currency": "USD", "destination_currency": "GBP", "source_ledger": "rn.eur.uk.london", "destination_ledger": "rn.eur.uk.london", "source_ledger_account": "alias_usd_lon", "destination_ledger_account": "conct_gbp_lon", "created_date": "2019-08-24T14:15:22Z", "expires_at": "2019-08-24T14:15:22Z", "lower_limit": 0, "upper_limit": 1000, "payout_method": "LOCAL_RAILS", "value_type": "MARGIN", "margin_type": "BPS" }
https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/rates/{rate_id}
https://[domainPrefix].ripplexcurrent.com/v4/config/rates/{rate_id}
curl -i -X DELETE \
'https://docs.ripple.com/_mock/products/payments-odl/api-docs/ripplenet/ripplenet/config/rates/{rate_id}' \
-H 'Authorization: YOUR_API_KEY_HERE'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" }