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

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()