XRPL-Utilities
XRPL-Utilities

XRPL Data Infrastructure

Six on-chain services for institutions, developers, and AI agents. Free from this site. Agent-payable via x402: XRP/RLUSD on XRPL or USDC on Base. No accounts, no API keys, no onboarding calls.

New to XRPL? Start here →

5-minute plain-English walkthrough.

Pay-per-call from $0.10 Live WebSocket streaming Auto-discoverable manifests On-chain settlement

Live network state

loading…

Tools

The portfolio

Live

XR-Sentinel

Vet a wallet before you interact.

Score any XRPL address 0-100 against a behavioral signal catalog (bot cadence, dormant reawakenings, address poisoning, sweep patterns) plus an AI narrative summary. For agents trading, pay flows, custody, or due diligence.

Free on the web · $0.10 per scan for agents
Live

XR-Telemetry

Read the network's macro state in one call.

Live supply constriction, dormant float, regional liquidity flows, AMM depth, and an algebraic utility-floor projection. For agents quoting, researchers modeling, or operators sizing exposure.

Free on the web · $0.10 per snapshot for agents
Live

XR-Pulse

Public-source XRPL event feed.

Public-source news plus on-chain whale activity in one normalized stream. Cross-verification when news sources overlap; sender + receiver labels on every XRPL Payment above the storage threshold. For agents that need market context AND raw on-chain signal in one paid call.

Free on the web · $0.10/query or stream from $0.50/hr
Live

XR-Trust

Index the XRPL permissioned web.

Public directory + explorer for PermissionedDomains (XLS-80) and Permissioned DEX activity (XLS-81). Surfaces accepted credentials, credential issuer identities, owner DID + TOML manifests, and live permissioned offers/AMMs. For agents discovering institutional venues on the XRP Ledger.

Free on the web · $0.10 per call for agents
Live

XR-Vault

Real-world assets, on-chain in real time.

Live tracker for tokenized real-world assets on XRPL. Per-issuer mint/burn flow, daily circulating snapshots, and the canonical wallet map across treasuries, stablecoins, commercial paper, money-market funds, and energy commodities. For agents and institutions watching where on-chain capital actually settles.

Free on the web · $0.10 per scan for agents
Live

XR-Flows

ETF flow meets the ledger.

Daily AUM for every US-listed XRP-exposure ETF (spot + indirect-basket tiers) plotted side by side with XRPL exchange-flow delta. Rolling Pearson correlation as a directional alignment score. Correlation, never causation. The off-chain side of institutional capital and the on-chain side of XRP, on one date axis.

Free on the web · live ETF AUM tracked daily
Live

XR-Lineage

Trace the flow, understand the origin.

Live lineage tracker for institutional XRPL movement. Watch fresh RLUSD mint and burn activity, see auto-discovered Ripple counterparties as they're onboarded, and catch multi-hop relay bursts the moment they fire on-chain. Anonymized public view; the operator-curated wallet list is the moat.

Free on the web · powered by XR-Pulse

Mission

XRPL-Utilities builds on-chain data services for the people, institutions, and AI agents that need to read the XRP Ledger without an account, an API key, or an onboarding call. Everything is free to use from this site. Agents and integrators pay per call (or buy a live WebSocket stream on XR-Pulse) over the x402 standard, settled in XRP or RLUSD on XRPL mainnet, or USDC on Base.

For AI agents

Discover. Pay. Consume.

Every tool implements the x402 payment standard with the XRPL exact scheme. No API keys, no accounts, no onboarding. Your agent finds the manifest, reads the schema, signs an XRPL Payment, and gets a structured response.

Or skip the integration entirely: the portfolio is now consumable as a Model Context Protocol server. 40 tools across all six services (25 free, 15 paid), callable from Claude Desktop or any MCP client. Stateless passthrough; same x402 payment model, just wrapped as MCP tools. Hosted at mcp.xrpl-utilities.io/mcp or npm i @xrpl-utilities/mcp.

  • Manifests at /.well-known/agents.json
  • Crawler-friendly at /llms.txt
  • Full OpenAPI 3.0 spec at /openapi.json
  • Settlement via the t54 XRPL facilitator (XRPL rails) or the Coinbase x402 facilitator (Base rail)
  • MCP server at github.com/XRPL-Utilities/xrpl-utilities-mcp
# Pay-per-call from any x402 v2 client
from x402_xrpl import X402RequestsSession

session = X402RequestsSession(
    wallet=wallet,
    rpc_url="https://YOUR_XRPL_RPC",
    payment_requirements_selector="XRP",
)

report = session.post(
    "https://sentinel.xrpl-utilities.io/scan",
    json={"address": target},
).json()