← Docs

XRP / RLUSD API

Updated: 2026-01-17 | Version: 3.1.0

XRP Ledger network health, RLUSD stablecoin monitoring, and whale tracking.

Disclaimer: Data infrastructure only. No investment advice.

Authentication

Required: X-API-Key: YOUR_KEY

Get key at feedoracle.io/subscribe

Endpoints

EndpointDescription
/api/v1/feeds/xrp/healthNetwork health score
/api/v1/feeds/xrp/marketXRP price & volume
/api/v1/feeds/xrp/rlusdRLUSD stablecoin
/api/v1/feeds/xrp/rwaRWA tokenization
/api/v1/feeds/xrp/whaleWhale tracking

Examples

curl -H "X-API-Key: YOUR_KEY" \
  https://feedoracle.io/api/v1/feeds/xrp/health

Response

{
  "value": 100,
  "status": "HEALTHY",
  "network": {
    "ledger_index": 101624657,
    "peers": 21,
    "server_state": "full"
  },
  "price": {"usd": 2.07, "change_24h": 0.74}
}

Errors

CodeMeaning
401Invalid API key
429Rate limit exceeded

Data Sources

XRP Ledger - Direct RPC connection
CoinGecko - Price data

← Back