P
PulseLABS dev
Synapse Engine · Decision Infrastructure

The decision layer
your product is missing.

Not a chatbot. A repeatable decision system for strategy, risk, and simulations — exposed as a clean REST API.

Get API KeyExplore the engine →
Scroll to explore
Without Synapse Engine
Prompt-engineer every edge case manually
Wire multi-agent routing from scratch
Build risk models and probability logic yourself
Maintain simulation state across requests
Reconstruct decision traceability after the fact
Re-prompt on every domain or context change
VS
Synapse Engine
Multi-agent debate rounds
POST /v1/conversations
Scenario simulation trees
POST /v1/simulations
Probability-weighted risk matrices
POST /v1/risk-sessions
Persistent agent memory
Agent.memory = true
Production-ready decision boards
Hosted at labs.pulsesoftwareapp.com
Full REST API surface
sdk · webhooks · streaming

"If you only need ChatGPT, don't buy us. If you need a repeatable decision system for strategy, risk, and simulations — Synapse Engine saves you months of engineering."

The Engine
Debate Engine
POST /v1/conversations
SimEngine
POST /v1/simulations
Risk Matrix
POST /v1/risk-sessions
Life Copilot
GET /v1/life-plans/:id
Market Analysis
POST /v1/market-analysis
Agent Personas
POST /v1/agents

Debate Engine

STRATEGY · CONSENSUS

Spin up multi-agent debate rounds where AI personas argue, challenge, and synthesize on any topic. Returns consensus scores, devil's advocate positions, and structured synthesis you can pipe directly into your product.

import { SynapseEngine } from '@pulselabs/synapse'

const engine = new SynapseEngine({ apiKey: process.env.SYNAPSE_KEY })

const debate = await engine.conversations.create({
  title: 'Market entry: APAC vs LATAM',
  agents: ['strategist', 'skeptic', 'analyst'],
  rounds: 3,
})

for await (const round of debate.stream()) {
  console.log(`[${round.agent}]`, round.position)
}

const synthesis = await debate.synthesize()
// → { consensus: 0.72, recommendation: '...', dissent: [...] }
Sample Output
Strategist
APAC has lower CAC and higher NPS benchmark.
Skeptic
Regulatory overhead adds 4–6 months minimum.
Synthesis
Consensus 0.72 — Stage APAC Q3, use LATAM as hedge.
Build in minutes

One key. Every decision module.

curl -X POST https://api.pulsesoftwareapp.com/v1/conversations \
  -H "x-api-key: sk_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "Q3 market entry decision",
    "agents": ["strategist", "skeptic", "analyst"],
    "rounds": 3
  }'

# Response
{
  "id": "conv_01JXYZ9A",
  "status": "active",
  "agents": ["strategist", "skeptic", "analyst"],
  "rounds": [],
  "synthesis": null,
  "stream_url": "https://api.pulsesoftwareapp.com/v1/conversations/conv_01JXYZ9A/stream"
}
< 200ms avg latency
99.9% uptime SLA
SOC 2 Type II
"

If you only need ChatGPT, don't buy us.

If you need a repeatable decision system for strategy, risk, and simulations, Synapse Engine saves you months of engineering and gives you a production-ready decision board.

Get API Key →Read the docs
Already have a key? →
PulseLABS API v1 · Synapse Engine
DocsSDK← PulseLABS