Sandbox

A clean dg_v2 environment. Test adapters, query the grid, and dry-run agents before touching production.

API Endpoints

Platform Services

Supported Events

Base URL

/api/v1

Adapter Testing

Submit adapters from Sources → Adapter Builder. Run against Sandbox. Inspect facts before go-live.

Go to Sources

Query Console

Query dg_v2 endpoints. Inspect objects, facts, schema.

Agent Dry-Run

Run any skill against Sandbox nodes with full telemetry. No production data.

Go to Agents

API Access

Base URLhttps://digital-grid-production-cb20.up.railway.app/api/v1
Auth headerX-API-Key: YOUR_KEY

Example Requests

// List all parties in your org

GET https://digital-grid-production-cb20.up.railway.app/api/v1/dg/v2/parties
X-API-Key: YOUR_KEY

// List all properties

GET https://digital-grid-production-cb20.up.railway.app/api/v1/dg/v2/properties
X-API-Key: YOUR_KEY

// Chat with REX — run a skill against your portfolio

POST https://digital-grid-production-cb20.up.railway.app/api/v1/ai/rex/chat
X-API-Key: YOUR_KEY
Content-Type: application/json

{
  "query": "Analyze tenant health across my portfolio",
  "preferred_skill": "TenantHealthAnalyzer"
}