From ed5e7e7bce55d8b7cd26fa7ed750b7ebd63cf9f2 Mon Sep 17 00:00:00 2001 From: Wietse Wind Date: Mon, 28 Jun 2021 15:08:08 +0200 Subject: [PATCH 1/3] Ripple data API alternatives --- content/references/data-api.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/content/references/data-api.md b/content/references/data-api.md index 99230a7b5b..e33dbe2bf8 100644 --- a/content/references/data-api.md +++ b/content/references/data-api.md @@ -10,3 +10,10 @@ nav_omit: true **Warning:** The Ripple Data API v2 is deprecated with no ongoing support. Please use the native [XRP Ledger HTTP APIs](rippled-api.html) instead. For information on the old Data API, see the [rippled-historical-database repository](https://github.com/ripple/rippled-historical-database). + +## Alternatives + +Most common operations like requesting account information and balances, transaction history, etc. +can be sent to self hosted or public XRP Ledger nodes. Data can be retrieved using a [WebSocket connection](get-started-using-http-websocket-apis.html#websocket-api) or [JSON RPC (HTTP POST)](.org/get-started-using-http-websocket-apis.html#json-rpc). + +See the [Get Started Using HTTP / WebSocket APIs](get-started-using-http-websocket-apis.html) page for more information. From 5d0ec4882272b89fdba68671115eb736d821989b Mon Sep 17 00:00:00 2001 From: Rome Reginelli Date: Tue, 29 Jun 2021 15:34:33 -0700 Subject: [PATCH 2/3] Fix typo & rephrase data API alternatives --- content/references/data-api.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/content/references/data-api.md b/content/references/data-api.md index e33dbe2bf8..302d6f45c8 100644 --- a/content/references/data-api.md +++ b/content/references/data-api.md @@ -13,7 +13,6 @@ For information on the old Data API, see the [rippled-historical-database reposi ## Alternatives -Most common operations like requesting account information and balances, transaction history, etc. -can be sent to self hosted or public XRP Ledger nodes. Data can be retrieved using a [WebSocket connection](get-started-using-http-websocket-apis.html#websocket-api) or [JSON RPC (HTTP POST)](.org/get-started-using-http-websocket-apis.html#json-rpc). +For most common operations, like requesting account balances or transaction history, you can query a self-hosted or [public XRP Ledger server](public-servers.html) using a [WebSocket connection](get-started-using-http-websocket-apis.html#websocket-api) or [JSON-RPC (HTTP POST)](get-started-using-http-websocket-apis.html#json-rpc). See the [Get Started Using HTTP / WebSocket APIs](get-started-using-http-websocket-apis.html) page for more information. From 2f0b5ed9780b28cefd766a793b775e6cb395c84d Mon Sep 17 00:00:00 2001 From: Mo Morsi Date: Tue, 29 Jun 2021 19:43:32 -0400 Subject: [PATCH 3/3] Include reference to the xrpintel API as alternate data source --- content/references/data-api.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/content/references/data-api.md b/content/references/data-api.md index 302d6f45c8..369d208184 100644 --- a/content/references/data-api.md +++ b/content/references/data-api.md @@ -16,3 +16,5 @@ For information on the old Data API, see the [rippled-historical-database reposi For most common operations, like requesting account balances or transaction history, you can query a self-hosted or [public XRP Ledger server](public-servers.html) using a [WebSocket connection](get-started-using-http-websocket-apis.html#websocket-api) or [JSON-RPC (HTTP POST)](get-started-using-http-websocket-apis.html#json-rpc). See the [Get Started Using HTTP / WebSocket APIs](get-started-using-http-websocket-apis.html) page for more information. + +[The XRP Intel API](https://xrpintel.com/api) run by Dev Null Productions provides many of the same data which the Ripple Data API v2 used to, including account, gateways, and more; derived directly from the XRP Ledger.