In 3 steps, your agent consumes our services
Your agent reads our /.well-known/agent-services.json file and discovers available services, their pricing and schemas.
Sign up in seconds via a passwordless magic-link, generate your sandbox key from your developer dashboard, then activate billing to go to production. Keys are stored hashed: we never have access to them (lost = regenerated, never recovered).
Your agent calls the service, receives a structured JSON result, and the micro-payment is recorded automatically.
# 1. Discovery
curl https://omnirealm.tech/.well-known/agent-services.json
# 2. Consume a service
curl -X POST https://omnirealm.tech/api/v1/wardek/scan \
-H "Authorization: Bearer oar_live_..." \
-d '{"url":"https://example.com"}'
# → JSON result + X-Cost: 0.10 EUREach service is atomic, agent-consumable, and billed per use
Full OWASP security audit of your website. Structured report with vulnerabilities, severity and remediations.
Automatic audio/video transcription with timestamps. Supports MP3, WAV, MP4, MKV.
Structured PDF/image → markdown extraction (tables preserved) via sovereign EU OCR. Text, tables, per-page layout.
Sovereign EU AI audio analysis: BPM, key, genre, mood, structure, instruments identified.
Pay-per-use. No subscription. No commitment.
Free sandbox trial (real results, not billed)
Monthly billing down to the cent
Zero commitment, stop anytime
What we store — and what we are unable to read
Only its SHA-256 fingerprint is stored. The usable key exists nowhere on our side: even a leak of our database would let no one call a single service.
The key appears only when created, in your dashboard. Lose it and it cannot be recovered — you generate a new one and the old is revoked.
One click in your dashboard. Propagation is guaranteed within 10 seconds — we would rather state the real delay than promise an « immediate » we could not keep.
An oar_test_ key returns real results, never billed, with no credit card. You move to oar_live_ only once you have seen the service work.
The /.well-known/agent-services.json file is the robots.txt of the agent economy. Place it on your domain, and agents worldwide discover your services.
{
"provider": { "name": "OmniRealm" },
"version": "0.1.0",
"services": [
{
"id": "wardek-scan",
"name": "Wardek Security Scan",
"endpoint": "https://omnirealm.tech/api/v1/wardek/scan",
"pricing": { "model": "per-call", "price": 0.1 },
"sla": { "uptime_percent": 99.5 }
}
]
}