Isolated world partitions connected by authenticated portal gateways. Share data across tenants without breaking isolation — every portal is scoped, rate-limited, and encrypted.
Every world is a fully isolated namespace. Entities, containers, vectors, and indices exist within their world boundary. No data leaks between worlds unless an explicit portal is established.
Portals are authenticated, scoped connections between worlds. Each portal carries an HMAC token that defines exactly which actions are permitted and which entity types can traverse the boundary.
Query data across world boundaries through authenticated portals. The portal gateway transparently routes queries to the target world, applies access filters, and returns results within the caller's security context.
Three encryption modes for portal traffic, from standard TLS to full homomorphic operations on encrypted data.
Per-identity, per-portal rate limiting prevents any single consumer from overwhelming a shared portal. Limits are configurable per action type and enforced at the gateway layer.
Eleven endpoints for world and portal lifecycle management.
POST /v1/worlds — Create worldGET /v1/worlds — List worldsGET /v1/worlds/{id} — World detailsDELETE /v1/worlds/{id} — Destroy worldPOST /v1/worlds/{id}/suspend — SuspendPOST /v1/portals — Create portalGET /v1/portals — List portalsGET /v1/portals/{id} — Portal detailsDELETE /v1/portals/{id} — Close portalPOST /v1/portals/{id}/query — Cross-world queryPOST /v1/portals/{id}/transfer — Cross-world transferSee cross-tenancy portals and world partitioning in a live technical demo.