RLUSD Reserve Attestation API
✓ LIVE Structured transparency data from Ripple's CPA-attested reports with on-chain anchoring on XRPL.
FeedOracle provides data infrastructure only. This is NOT audit, compliance, or legal advice. Data sourced from Ripple's public attestation reports. No partnership with Ripple is implied.
Overview
This API transforms Ripple's monthly PDF attestation reports into structured JSON with cryptographic verification and on-chain anchoring.
Features
- Yes Parsed data from CPA-attested monthly reports
- Yes SHA256 content hashes for integrity
- Yes On-chain anchoring on XRPL (+ Polygon backup)
- Yes Historical data tracking
- Yes Public API access
Current Data
| Metric | Value | Date |
|---|---|---|
| Circulating Supply | 1,260,898,084 RLUSD | Nov 28, 2025 |
| Reserve Value | $1,314,484,291 | Nov 28, 2025 |
| Reserve Ratio | 104.25% | Nov 28, 2025 |
| Issuer | Standard Custody & Trust Company, LLC | — |
| Regulator | NYDFS | — |
API Endpoints
Base URL: https://api.feedoracle.io
| Endpoint | Auth |
|---|---|
/api/v3/rlusd/status | Public |
/api/v3/rlusd/latest | Public |
/api/v3/rlusd/history | Public |
/api/v3/rlusd/methodology | Public |
/api/v3/rlusd/anchors | Public |
/api/v3/rlusd/anchors/list | Public |
/api/v3/rlusd/verify/{id} | Public |
cURL Examples
Get Latest Attestation
curl -s https://api.feedoracle.io/api/v3/rlusd/latest
Response
{
"snapshot": {
"snapshot_id": "rlusd_202511_20260120182831",
"report_month": "2025-11",
"date": "2025-11-28",
"circulating_supply": 1260898084,
"reserve_value_usd": 1314484291,
"reserve_ratio": 1.042498,
"issuer": "Standard Custody & Trust Company, LLC",
"content_hash": "17673a2f9d06db30...",
"data_available": true
}
}
Note: snapshot_id format is rlusd_YYYYMM_TIMESTAMP. Get actual IDs from /api/v3/rlusd/latest or /history.
Get Historical Data
curl -s https://api.feedoracle.io/api/v3/rlusd/history
Get Service Status
curl -s https://api.feedoracle.io/api/v3/rlusd/status
List All XRPL Anchors
curl -s https://api.feedoracle.io/api/v3/rlusd/anchors/list
XRPL On-Chain Anchoring
Every attestation is anchored on XRP Ledger for immutable verification.
Wallet: rKs1JjEArqPWojFwcGdMq93wVZr3f7eXcm
Anchors: 4 reports on-chain
Explorer: View all transactions →
On-Chain Memo Format
{"t":"RLUSD","m":"2025-11","h":"17673a2f...","s":1260898084}
Note: snapshot_id format is rlusd_YYYYMM_TIMESTAMP. Get actual IDs from /api/v3/rlusd/latest or /history.
t= Type (RLUSD)m= Report Monthh= Content Hash (32 chars)s= Circulating Supply
Anchors Explained
/api/v3/rlusd/anchors returns the on-chain anchor references for each attestation snapshot.
- XRPL anchor is the primary reference (tx hash + ledger index)
- Optional backup anchors can exist on EVM chains (tx hash + block number)
Example Response
{
"id": "rlusd_202511_YYYYMMDDHHMMSS",
"report_date": "2025-11-28",
"supply": 1260898084,
"reserves_usd": 1314484291,
"reserve_ratio": 1.0425,
"anchors": [
{"network": "XRPL", "tx_hash": "EXAMPLE_TX", "ledger_index": 99999999},
{"network": "Polygon", "tx_hash": "EXAMPLE_TX", "block_number": 55555555}
],
"verify_url": "https://api.feedoracle.io/api/v3/rlusd/verify/rlusd_202511_YYYYMMDDHHMMSS"
}
Note: snapshot_id format is rlusd_YYYYMM_TIMESTAMP. Get actual IDs from /api/v3/rlusd/latest or /history.
Data Source
Data is parsed from Ripple's official monthly CPA-attested transparency reports:
ripple.com/solutions/stablecoin/transparency
Rate Limits
- Public: 100 requests/minute
- Keyed: 1000 requests/minute
Update Frequency
Data is updated monthly, within 30 days after month end (aligned with Ripple's report schedule).
Last updated: January 20, 2026 | Back to Docs · EPM v1.0