Metered API Access and On-Chain Settlement for
AI Agents
Settlex tracks every API call your agents make and settles payment directly on the Canton Network. No subscriptions. No credit top-ups. Pay only for what you consume.
How It Works
Three steps to real-time API settlement
Point to Settlex
Change one line of config. Replace the provider base URL with your Settlex gateway URL. Your existing code works as-is.
We Proxy & Meter
Every API call flows through our gateway. We authenticate, meter usage, and forward requests to the provider transparently. Zero latency impact.
On-Chain Settlement
Your spend is recorded on Canton's ledger and cryptographically verifiable. No invoices, no credit risk.
What You Can Build
Real use cases running on Settlex Flow
Prediction Market AI Agent
An autonomous agent that continuously queries market data, social signals, and news to generate and settle predictions, without a human managing API billing.
APIs used
AI Agent Infrastructure
Power LLM-based agents that pay per token, not per month. Route OpenAI or Claude calls through Settlex and let your agent manage its own compute budget autonomously.
APIs used
Why Settlex Flow
Built for the machine economy, designed for developers
Optimized Capital Efficiency
Move from lump-sum monthly payments to micro-settlements that reflect actual usage patterns. Pay $0.002 per call, not $200 per month.
Verifiable Usage Audits
Every settlement is recorded on the Canton ledger and cryptographically verifiable, while remaining fully private to the outside world.
Agentic Commerce Ready
Enable AI agents to browse, select, and pay for API services autonomously without requiring a human-in-the-loop to manage billing.
Frictionless Scaling
Scale usage up or down instantly without renegotiating tiers or managing seat limits. Your spend follows your demand curve exactly.
One Line Change
Switch from direct provider calls to settled API calls by changing the base URL
One Line Change
Switch from direct provider calls to settled API calls by changing the base URL
// Direct call — your API key, your subscription
const res = await fetch(
"https://pro-api.coinmarketcap.com/v1/cryptocurrency/quotes/latest?symbol=ETH",
{
headers: {
"X-CMC_PRO_API_KEY": "your-cmc-api-key",
},
}
);
const data = await res.json();// Through Settlex — one key, usage-based settlement
const res = await fetch(
"https://settlex-gateway.luganodes.com/gateway/coinmarketcap/v1/cryptocurrency/quotes/latest?symbol=ETH",
{
headers: {
"x-settlex-api-key": "your-settlex-key",
"idempotency-key": crypto.randomUUID(),
},
}
);
const data = await res.json();
// Canton settlement triggered automatically