Infrastructure
The invisible layer
powering connected services.
Your business runs. Your leads flow. You never asked why.
That's our Core doing its job.
Architecture
Five components.
One system.
One system.
Every connected service receives identity, rules, monitoring and intelligence. Automatically.
ACCOUNT
Identity
Unified SSO, user accounts, wallet. One identity across the entire ecosystem.
EASY
Operations
Payments, invoicing, communications, incident management, status page.
GOVERNANCE
Rules
Three-level cascading engine. Galaxy → Network → Service.
INTELLIGENCE
AI
Vertical models. Analytics, insights, automations from every connected service.
SYNC
The nervous system
Connection protocol, internal APIs, shared business layer. The invisible thread binding everything.
Integration
One file.
Everything automatic.
Everything automatic.
Drop a single mu-plugin. AEGIS detects the environment, registers the site, syncs data, applies rules. Zero configuration.
01
Connect
Install the Sync Connector. The site self-registers with Governance.
02
Sync
Heartbeats, users, events flow automatically to AEGIS.
03
Govern
Rules cascade down. Toggle features from one dashboard.
04
Analyse
Intelligence processes every event. Insights surface automatically.
You build products.
We run the infrastructure.
We run the infrastructure.
AEGIS TECH LAYER
Pricing
Connect your service.
Pick your level.
Pick your level.
One connector, three levels. Upgrade anytime. All plans include SSO, monitoring and status page.
Lite
Free
Forever — no credit card
- ✓Heartbeat monitoring
- ✓Status page listing
- ✓Basic telemetry
- ✓SSO via Magic Link
- —Governance rules
- —Event logging
- —AI insights
Standard
€29 / month
Per connected site
- ✓Everything in Lite
- ✓Governance rules sync
- ✓Event logging (10k/mo)
- ✓User sync + accounts
- ✓Magic Link auth
- ✓Email notifications
- —AI insights
Deep
€79 / month
Per connected site
- ✓Everything in Standard
- ✓Unlimited events
- ✓Business data sync
- ✓AI insights + automations
- ✓Custom rules engine
- ✓Priority Shield monitoring
- ✓Dedicated support
Usage & Limits
| Resource | Lite | Standard | Deep |
|---|---|---|---|
| Heartbeats | 1/hr | 1/min | 1/min |
| Events logged | — | 10,000/mo | Unlimited |
| User sync | — | 500 users | Unlimited |
| Governance rules | — | Read only | Read + Write |
| AI model access | — | — | 5 models |
| Magic Link auth | 10/day | 100/day | Unlimited |
| Status page | Listed | Listed | Priority |
| Support | Community | Dedicated | |
| Overage (events) | — | €0.003/evt | Included |
API Reference
Endpoints
All endpoints require authentication via
X-Aegis-Secret header. Keys are issued per connected site from Governance.Endpoints are read/write only with a valid API key. Request yours via a plan above.
POST/auth/magic-linkSend magic link
POST /langa/v1/auth/magic-link X-Aegis-Secret: sk_live_... { "email": "user@example.com", "site": "https://example.com" } → { "success": true }
GET/auth/verify/{token}Verify token
GET /langa/v1/auth/verify/a1b2c3... X-Aegis-Secret: sk_live_... → { "email": "user@example.com", "verified": true }
POST/sync/heartbeatSite heartbeat
POST /langa/v1/sync/heartbeat X-Aegis-Secret: sk_live_... { "version": "5.4.0", "site_url": "https://example.com" } → { "status": "ok" }
GET/governance/rules/{site}Get rules
GET /langa/v1/governance/rules/example.com X-Aegis-Secret: sk_live_... → { "rules": [...], "level": "standard" }
POST/intelligence/logLog event
POST /langa/v1/intelligence/log X-Aegis-Secret: sk_live_... { "event": "order_completed", "payload": { ... } } → { "logged": true }