Built for agents
Your agent can be querying XDC Network in minutes — keyless REST API, an MCP server for tool-using hosts, and machine-readable data end to end.
// Minimal agent: query XDC network stats — no API key required
const res = await fetch("https://xdcscan.io/api/v2/stats");
if (!res.ok) throw new Error(`OpenScan.AI API error: ${res.status}`);
const stats = await res.json();
console.log(`Blocks: ${stats.total_blocks}, Txs: ${stats.total_transactions}`); -
Keyless REST API
Blockscout-compatible REST API v2 at xdcscan.io/api/v2 — blocks, transactions, addresses, tokens. No API key or signup required to start querying.
API documentation → -
MCP server for tool-using agents
Expose balances, transactions, tokens, NFTs, and contract metadata to Claude, Cursor, and other MCP hosts. Self-host and point it at any OpenScan.AI instance.
MCP server docs → -
Machine-readable everything
Structured JSON across the board — explorer data, contract ABIs, and network stats — so agents never have to scrape HTML to understand the chain.
Explore endpoints →
Note: the public v2 API is rolling out with Phase 2 (Live Data) — responses can be intermittent during rollout, so build agents with retries and timeouts.
Agent-friendly rate limits
The public API is free and keyless under fair use. For high-frequency bots: cache aggressively, back off on 429/5xx, and prefer indexed endpoints over repeated deep scans. Need guaranteed throughput for a production agent fleet? Talk to us about a dedicated instance.
Contact us →Agent-native payments
2026 roadmapPer-call, x402-style stablecoin payments — agents paying for premium chain data per request, with no accounts or API keys — are on our 2026 roadmap. Nothing to integrate yet; follow the roadmap for updates.
See the roadmap →Give your agent eyes on the chain
Start with the keyless API, wire up MCP when your host supports it, and tell us what your agent needs next.