Live Demo · Free Sandbox · No Sales Call
Watch live API calls hit real infrastructure. Then provision your own node — free, in 60 seconds.
Live API Demo
Three real-world scenarios. Real API calls hitting live infrastructure. Pick one and watch it run.
One API key. All your clients. Every tool. Pick a scenario to see it in action.
Choose a scenario to demo
Here's what happened in under 2 seconds.
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.
API Explorer
Click any endpoint and hit Run. This is the actual API your clients call — same key, same schema across every integration.
Returns the 10 most recent inbox threads for the connected email account. Supports Gmail and Outlook — same endpoint, same schema.
Response renders here as visual cards. Switch to Raw JSON to see the full API response.
Free Sandbox · 7 Days · 500 Requests
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.
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_...
Sandbox Includes
The sandbox is the full platform — capped at 500 requests. Every feature available to paid nodes is available to you.
A fully provisioned, isolated API node assigned to your company. Same infrastructure as paid production nodes.
Create client records, provision sub-keys, and test the full multi-tenant client management flow.
Push custom AI configurations per client — model selection, system prompts, max tokens — routed against your own Anthropic key.
Full access to the web dashboard for managing your node, clients, API keys, and usage metrics.
GoHighLevel, SMS, and custom webhook endpoints ready to connect to your existing client workflows.
Connect Gmail, Outlook, Google Calendar, and IMAP integrations per client — all encrypted at rest.
Quick Start
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'])
No Approval. No Waiting.
Fill in your details and your production node is live instantly. First invoice on the 1st of next month.
Create Your VAR Account
Production node. Live API key. No approval required.
You're live.
Your production VAR node is active. Check your email at for your live API key. First invoice on the 1st of next month.