XRPL-Utilities XRPL-Utilities
XRPL-Utilities

XRPL AI Agent Applications

A growing suite of XRPL-native tools built for the agentic economy. Auto-discoverable, agent-payable APIs that autonomous AI agents can find, understand, and pay for — without API keys or human intervention.

Mission

AI agents are the next class of API consumer. They discover services without humans, pay without accounts, and integrate without onboarding flows. We build XRPL-native services for that world — designed from day one to be machine-discoverable and machine-payable.

Tools

The portfolio

Live

XR-Sentinel

XRPL activity pattern classifier. Given any XRPL address, returns a 0–100 activity score, structured signal catalog, and AI-generated narrative summary.

$0.10 USD per scan · XRP or RLUSD
In design

XR-Escrow

Conditional XRPL escrow management for autonomous agents. Programmatic create, finish, and cancel against time and crypto-conditions.

Coming soon
In design

XR-Trust

Trustline introspection and risk envelope analysis for agent-managed wallets. Issuer reputation, freeze flags, ripple paths.

Coming soon

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.

  • 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
# Pay-per-call from any x402 v2 client
from x402_xrpl import X402RequestsSession

session = X402RequestsSession(
    wallet=wallet,
    rpc_url="https://xrplcluster.com",
    payment_requirements_selector="XRP",
)

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