← Back to Documentation
← Back to Docs

RLUSD Reserve Attestation API

✓ LIVE Structured transparency data from Ripple's CPA-attested reports with on-chain anchoring on XRPL.

Important Disclaimer
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

Current Data

MetricValueDate
Circulating Supply1,260,898,084 RLUSDNov 28, 2025
Reserve Value$1,314,484,291Nov 28, 2025
Reserve Ratio104.25%Nov 28, 2025
IssuerStandard Custody & Trust Company, LLC
RegulatorNYDFS

API Endpoints

Base URL: https://api.feedoracle.io

EndpointAuth
/api/v3/rlusd/statusPublic
/api/v3/rlusd/latestPublic
/api/v3/rlusd/historyPublic
/api/v3/rlusd/methodologyPublic
/api/v3/rlusd/anchorsPublic
/api/v3/rlusd/anchors/listPublic
/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.

Anchors Explained

/api/v3/rlusd/anchors returns the on-chain anchor references for each attestation snapshot.

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

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