Live Demo · Free Sandbox · No Sales Call

One API.
Every Client.
Everything.

Watch live API calls hit real infrastructure. Then provision your own node — free, in 60 seconds.

500Requests free
60sTo first call
$0No card needed

See It In Action.

Three real-world scenarios. Real API calls hitting live infrastructure. Pick one and watch it run.

1
Your Node
2
Live Event
3
Results
VAR Node — Acme Technology Partners

Your AI Infrastructure
Is Live

One API key. All your clients. Every tool. Pick a scenario to see it in action.

Active Clients
3
Seats on your node
API Calls This Month
1,284
Across all clients
Integrations Connected
9
CRM, email, Slack, SMS
Monthly Invoice
$2,090
$2,000 base + 3 seats

Choose a scenario to demo

LAW
Law Firm
A new client inquiry email comes in after hours. Your AI reads it, checks the CRM, drafts the intake response, and notifies the paralegal on Slack — before anyone touches a keyboard.
Trigger: Inbound email inquiry
RE
Real Estate
A lead submits a form at 11pm. Your AI logs the contact, checks the agent's calendar, books a showing, and fires a text to the agent — while the competitor is still asleep.
Trigger: Inbound lead form
HVAC
Home Services
Technician finishes a job and logs a call note. Your AI updates the CRM, sends a follow-up SMS to the homeowner, and flags the account for renewal — no office staff needed.
Trigger: Post-job call log
MED
Medical Practice
A new patient submits an appointment request online at night. Your AI checks the schedule, books the slot, sends a confirmation SMS with intake forms, and notifies the front desk — zero phone tag.
Trigger: New patient appointment request
INS
Insurance Agency
A high-urgency quote request comes in after hours. Your AI creates the prospect, matches coverage type, assigns the right agent, and fires a personal SMS to the client — before a competitor even wakes up.
Trigger: Inbound quote request
FIN
Financial Advisor
A $2.8M prospect emails after a referral. Your AI tiers them instantly, assigns a senior advisor, drafts a personalized reply with a calendar link, and pings the team on Slack — all before anyone reads the email.
Trigger: High-value prospect inquiry
Client on your node
Connected integrations
Inbound event
Waiting
Click "Trigger Event" to simulate an inbound event hitting your API.
API activity feed
Real-time log POST /api/v1/clients/:ref/channels/ingest
Waiting for event...

Everything Done.
Zero Manual Work.

Here's what happened in under 2 seconds.

This client on your node — billing impact
Platform base fee$2,000.00 / month
Active seats (3 clients × $30)$90.00 / month
Markup to your clients (your call)You set the price
Your invoice to RGX$2,090 / mo

What you just saw

That was a real API call hitting live infrastructure. The interface you're looking at is not the product — the API underneath is. Your clients will never see this screen. You build the interface, the workflow, the AI — however your clients need it. One authenticated connection gives you CRM, email, calls, SMS, Slack, calendar, and knowledge base. You own everything on top.

Browse the Endpoints.

Click any endpoint and hit Run. This is the actual API your clients call — same key, same schema across every integration.

Email
CRM
Calendar
AI Layer
Webhooks
GET https://rgxsystems.com/api/v1/{ref}/email/inbox

Read Inbox

Returns the 10 most recent inbox threads for the connected email account. Supports Gmail and Outlook — same endpoint, same schema.

Response
Raw JSON

Hit Run to call the endpoint

Response renders here as visual cards. Switch to Raw JSON to see the full API response.

// Hit Run to see the raw API response

Try It Yourself.

Provision a live VAR node, get your API key by email, and make your first inference call — all before your next meeting.

Claim Your Sandbox Node

Enter your company name and work email. We'll provision a live VAR node and send your API key instantly.

By submitting you agree to our Terms of Service and Privacy Policy. One sandbox per email. No spam.

Your node is live.

Check your email for your API key — sent to . Store it securely; it won't be shown again.

Base URL

https://rgxsystems.com/api/v1

Add your key as a header: X-Api-Key: rgx_live_...

1
Make your first requestSee the code examples below — copy, paste, run.
2
Open the VAR Portalrgxsystems.com/app/var/login — manage clients, keys, and AI configs.
3
Read the docsrgxsystems.com/docs — full API reference and integration examples.
4
Ready to go live?Sign up as a VAR now →

Every Feature. No Limits on Capability.

The sandbox is the full platform — capped at 500 requests. Every feature available to paid nodes is available to you.

Live VAR Node

A fully provisioned, isolated API node assigned to your company. Same infrastructure as paid production nodes.

Client Provisioning

Create client records, provision sub-keys, and test the full multi-tenant client management flow.

AI Config Passthrough

Push custom AI configurations per client — model selection, system prompts, max tokens — routed against your own Anthropic key.

VAR Portal Access

Full access to the web dashboard for managing your node, clients, API keys, and usage metrics.

Webhook Support

GoHighLevel, SMS, and custom webhook endpoints ready to connect to your existing client workflows.

Integration Configs

Connect Gmail, Outlook, Google Calendar, and IMAP integrations per client — all encrypted at rest.

First API Call in 60 Seconds

Replace YOUR_API_KEY with the key from your email. These calls work against your live sandbox node right now.

# 1. Provision a client on your node
curl -X POST https://rgxsystems.com/api/v1/clients \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"Contoso LLC","email":"admin@contoso.com"}'

# 2. Push an AI config for that client
curl -X PUT https://rgxsystems.com/api/v1/clients/CLIENT_REF/ai-config \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-sonnet-4-6",
    "system_prompt": "You are an assistant for Contoso LLC.",
    "max_tokens": 1024,
    "anthropic_api_key": "sk-ant-..."
  }'

# 3. Run an inference
curl -X POST https://rgxsystems.com/api/v1/clients/CLIENT_REF/process \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"message":"Summarize last quarter revenue trends."}'
const BASE = 'https://rgxsystems.com/api/v1';
const KEY  = 'YOUR_API_KEY';
const hdrs = { 'X-Api-Key': KEY, 'Content-Type': 'application/json' };

const client = await fetch(`${BASE}/clients`, {
  method: 'POST', headers: hdrs,
  body: JSON.stringify({ name: 'Contoso LLC', email: 'admin@contoso.com' })
}).then(r => r.json());

await fetch(`${BASE}/clients/${client.ref}/ai-config`, {
  method: 'PUT', headers: hdrs,
  body: JSON.stringify({
    model: 'claude-sonnet-4-6',
    system_prompt: 'You are an assistant for Contoso LLC.',
    max_tokens: 1024,
    anthropic_api_key: 'sk-ant-...'
  })
});

const result = await fetch(`${BASE}/clients/${client.ref}/process`, {
  method: 'POST', headers: hdrs,
  body: JSON.stringify({ message: 'Summarize last quarter revenue trends.' })
}).then(r => r.json());

console.log(result.response);
import requests

BASE = 'https://rgxsystems.com/api/v1'
HEADERS = { 'X-Api-Key': 'YOUR_API_KEY', 'Content-Type': 'application/json' }

client = requests.post(f'{BASE}/clients', headers=HEADERS, json={
    'name': 'Contoso LLC', 'email': 'admin@contoso.com'
}).json()

requests.put(f"{BASE}/clients/{client['ref']}/ai-config", headers=HEADERS, json={
    'model': 'claude-sonnet-4-6',
    'system_prompt': 'You are an assistant for Contoso LLC.',
    'max_tokens': 1024,
    'anthropic_api_key': 'sk-ant-...'
})

result = requests.post(f"{BASE}/clients/{client['ref']}/process", headers=HEADERS, json={
    'message': 'Summarize last quarter revenue trends.'
}).json()

print(result['response'])

Go Live Now.

Fill in your details and your production node is live instantly. First invoice on the 1st of next month.

$2Kper node / mo
$30per active seat