24 countries • x402 payment on XRP Ledger • Pay per query in XRP
AI Agent Data Platform
on the XRP Ledger
Query economic and regulatory data from 24 countries via
x402. AI agents pay
0.1 XRP for factual data or
0.5 XRP for AI-enhanced analysis.
No API keys. No subscriptions. No KYC.
Browser-based "Send Query" is disabled. This is a payment endpoint —
use curl, Python, or your AI agent to submit x402 payment.
See the code examples below.
How x402 Payment Works
1
Send your query to the endpoint. Server returns HTTP 402 with payment details.
2
Sign and submit XRP payment (via Xaman/Joey wallet or t54 facilitator).
3
Retry the same request with payment header. Server returns your data.
The 402 response includes pay_to address, invoice ID, and QR code for Xaman/Joey wallet.
All payments go to the platform treasury (verified on XRPL mainnet).
Pricing
0.1 XRP
Standard API
Factual data — scraped government sources, fast response.
0.5 XRP
AI Enhanced API
AI analysis — comparison, reasoning, and recommendations.
FREE
Health Check
No payment required. Check country status and data availability.
Quick Start
# Check health (free, no payment)
curl https://xrplme.online/wc/v1/thailand/health
# Query standard endpoint (0.1 XRP)
curl -X POST https://xrplme.online/wc/v1/thailand/bot \
-H "Content-Type: application/json" \
-d '{"message":"What are Thailand business registration requirements?","session_id":"agent-001"}'
# → HTTP 402 with payment instructions
# → Pay invoice, then retry the same request
# → HTTP 200 with country data
# AI-enhanced endpoint (0.5 XRP)
curl -X POST https://xrplme.online/wc/v1/japan/bot/ai \
-H "Content-Type: application/json" \
-d '{"message":"Compare Japan crypto regulations with Singapore","session_id":"agent-002"}'
24 Available Countries
Thailand
Vietnam
Japan
Korea
India
USA
Canada
UAE
UK
Philippines
Singapore
Australia
Germany
France
Brazil
Mexico
Switzerland
Netherlands
Hong Kong
Malaysia
Indonesia
Taiwan
Macau
New Zealand
API Endpoints
POST /wc/v1/{country}/bot # 0.1 XRP - Standard API
POST /wc/v1/{country}/bot/ai # 0.5 XRP - AI Enhanced API
GET /wc/v1/{country}/health # Free - Health check
Country slug examples: thailand, japan, singapore, hong_kong, uk, usa.
Full list: see
API docs.