API Reference
BrainStack Studio exposes safe capability facades. These endpoints are deterministic and intentionally limited to prevent IP exposure.
Deterministic
Bounded outputs, no hallucinated promises
Safe Facades
No internal orchestration exposed
Base URL
https://brainstackstudio.comEndpoints
POST
Core/api/capability/explorerDeterministic explorer mapping (safe preview)
GET
Utility/api/capability/explorerCapability facade status and allowed inputs
POST
Lead/api/leadEnterprise intake form submission
POST
Internal/api/telemetryAnonymous usage telemetry
POST
/api/capability/explorer
Returns a deterministic workflow preview for a given industry, role, and pain point.
Request Body
json
12345{
"industry": "construction",
"role": "ops-manager",
"painPoint": "money"
}Response
json
12345678910{
"status": "ok",
"confidenceThreshold": 0.65,
"result": {
"identifiedPain": "Margin erosion from estimate drift",
"workflow": ["Capture change orders", "Escalate approvals", "Publish variance report"],
"confidence": 0.82,
"confidenceLabel": "High"
}
}GET
/api/capability/explorer
Response
json
123456{
"status": "ok",
"industries": ["operations", "construction", "saas", "finance", "supply-chain"],
"roles": ["owner", "ops-manager", "engineer", "analyst"],
"painPoints": ["money", "labor", "process", "compliance", "scale", "visibility"]
}Error Handling
Error Response Format
json
123{
"error": "Missing required fields."
}