Automated AI Data Leakage Protection — See It Work
Get a free Workspace Security Token and watch real PII get caught and blocked before it reaches any AI model — in under 60 seconds. No credit card. No approval.
How It Works
Full access to the live protection stack. Watch PII get caught, provision isolated client workspaces, and inspect the audit report — real infrastructure, real Workspace Security Token.
For Security & Compliance Teams
Before enterprise procurement, security teams need to verify three things in production: PII never leaves the gateway unredacted, tenant boundaries are enforced at the data layer, and every compliance event is permanently auditable. The sandbox lets you verify all three.
"We need proof that PII never reaches the LLM — not a contractual assurance."
Security teams require verifiable behavior under real payloads. PHI, financial identifiers, and legal PII must be stripped in-flight before any AI model sees the request. Promises in an MSA are not a substitute for observed output.
"Strict data-layer isolation is required. Application-layer controls aren't sufficient."
In regulated multi-tenant deployments, one tenant's data must be inaccessible to another through any code path — a misconfigured query, shared cache, or lateral API call. Application-layer filtering is not an acceptable control for HIPAA or SOC 2.
"Audit logs must be immutable. Mutable logs fail HIPAA and SOC 2 audit requirements."
Compliance frameworks require that redaction event logs cannot be modified, deleted, or backdated after the fact. A log system that permits updates is a liability in any breach investigation or regulatory audit.
"Enterprise SSO is non-negotiable. We don't operate separate credential systems."
Enterprise procurement requires integration with the organization's identity provider — Okta, Azure AD, ADFS, or Google Workspace — via OIDC or SAML 2.0. Parallel authentication systems create audit gaps and access control risk.
Free · No Credit Card · No Approval
Enter your company name and email. We'll send you a real, working Workspace Security Token instantly. You get 500 free protected requests to try the full platform before committing to a production workspace.
Claim Your Free Workspace Token
Enter your company name and work email. Your Workspace Security Token arrives by email in seconds — use it to test the full platform before you pay anything.
Your workspace is live.
Check your email for your Workspace Security Token — sent to . Store it securely; it won't be shown again.
Base URL
https://rgxsystems.com/api/v1
Add your Workspace Security Token as a header: X-Api-Key: rgx_live_...
What You Get With the Free Trial
The trial is the real production stack — same infrastructure, same enforcement. No watered-down trial mode. The only limit is 500 requests.
POST /api/v1/process with real payloads. Observe PII/PHI interception in-flight, inspect forwarded_payload, and verify the redaction event log. Industry modes: healthcare, legal, finance, real_estate, professional_services.
Provision multiple isolated client workspaces and attempt cross-workspace data access. Verify that data-layer enforcement blocks all lateral access regardless of token scope.
Drive activity across test tenants and query /api/v1/usage and /api/v1/billing/summary. Verify the non-blocking async ledger records per-seat events without adding latency to inference calls.
Configure enterprise SSO against your test IdP. Validate RS256/ES256 token verification offline and confirm that RGX makes no outbound calls to your identity provider per seat authorization.
Your trial token hits live infrastructure. No mock endpoints, no read-only preview. All behavior is identical to a production workspace; only the request quota differs.
Query the compliance_redaction_events table after /process calls. Confirm permanent retention, immutability, and the event schema required for HIPAA, SOC 2, and financial audit compliance.
Quick Start
Replace YOUR_API_KEY with the key from your email. These calls run against live sandbox infrastructure — real PII scrubbing, real isolation enforcement.
# 1. Provision an isolated tenant workspace curl -X POST https://rgxsystems.com/api/v1/clients \ -H "X-Api-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"ref":"tenant-acme","name":"Acme Health Group","industry":"healthcare"}' # 2. Run a compliance-scrubbed inference curl -X POST https://rgxsystems.com/api/v1/process \ -H "X-Api-Key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "tenant_ref": "tenant-acme", "user_id": "dr.smith@acme.org", "message": "Summarize Jane Doe, DOB 1982-04-11, MRN 00482991 recent labs.", "model": "claude-sonnet-4-6" }' # Response: PHI stripped — LLM never sees raw identifiers # forwarded_payload: "Summarize {{REDACTED_PHI_1}}, DOB {{REDACTED_PHI_2}}, MRN {{REDACTED_PHI_3}} recent labs." # redactions: 3 | compliance_event_id: "ce_01j..." # 3. Verify the seat metering ledger curl https://rgxsystems.com/api/v1/usage?tenant_ref=tenant-acme \ -H "X-Api-Key: YOUR_API_KEY"
const BASE = 'https://rgxsystems.com/api/v1'; const KEY = 'YOUR_API_KEY'; const hdrs = { 'X-Api-Key': KEY, 'Content-Type': 'application/json' }; // 1. Provision an isolated tenant workspace await fetch(`${BASE}/clients`, { method: 'POST', headers: hdrs, body: JSON.stringify({ ref: 'tenant-acme', name: 'Acme Health Group', industry: 'healthcare' }) }); // 2. Run a compliance-scrubbed inference const result = await fetch(`${BASE}/process`, { method: 'POST', headers: hdrs, body: JSON.stringify({ tenant_ref: 'tenant-acme', user_id: 'dr.smith@acme.org', message: 'Summarize Jane Doe, DOB 1982-04-11, MRN 00482991 recent labs.', model: 'claude-sonnet-4-6' }) }).then(r => r.json()); // PHI stripped before LLM call console.log(result.forwarded_payload); // {{REDACTED_PHI_1}}, {{REDACTED_PHI_2}}... console.log(result.redactions); // 3 console.log(result.compliance_event_id); // 3. Verify the metering ledger const usage = await fetch(`${BASE}/usage?tenant_ref=tenant-acme`, { headers: hdrs }) .then(r => r.json()); console.log(usage.active_seats);
import requests BASE = 'https://rgxsystems.com/api/v1' H = { 'X-Api-Key': 'YOUR_API_KEY', 'Content-Type': 'application/json' } # 1. Provision an isolated tenant workspace requests.post(f'{BASE}/clients', headers=H, json={ 'ref': 'tenant-acme', 'name': 'Acme Health Group', 'industry': 'healthcare' }) # 2. Run a compliance-scrubbed inference result = requests.post(f'{BASE}/process', headers=H, json={ 'tenant_ref': 'tenant-acme', 'user_id': 'dr.smith@acme.org', 'message': 'Summarize Jane Doe, DOB 1982-04-11, MRN 00482991 recent labs.', 'model': 'claude-sonnet-4-6' }).json() # PHI stripped before the LLM call print(result['forwarded_payload']) # {{REDACTED_PHI_1}}, {{REDACTED_PHI_2}}... print(result['redactions']) # 3 # 3. Verify the metering ledger usage = requests.get(f'{BASE}/usage', headers=H, params={'tenant_ref': 'tenant-acme'}).json() print(usage['active_seats'])
Validated in the Trial? Ready to Deploy?
Pricing is set per partner based on your deployment — tell us a bit about yours and we'll follow up to agree on terms and get your production workspace provisioned.
Request Production Access
A member of our team will reach out to discuss pricing and your deployment before your production workspace goes live.
Request received.
We've sent a confirmation to . A member of our team will follow up shortly to discuss pricing and your deployment before your production workspace is provisioned.