Deploy, stream, and govern NEXORA agent nodes with less than 10 lines of code.
import { NexoraClient } from '@nexora/sdk'
const nexora = new NexoraClient({
apiKey: process.env.NEXORA_API_KEY,
region: 'us-east-1'
})
// Dispatch an autonomous workflow execution
const execution = await nexora.agents.dispatch({
agentId: 'ag_fraud_detection_v4',
payload: {
transactionId: 'tx_982341824',
amount: 14200.00,
currency: 'USD'
},
timeoutMs: 3000
})
console.log('Execution Status:', execution.status)
console.log('Verdict Payload:', execution.result)Synchronous execution dispatch with strict JSON output guarantee.
Retrieve state, logs, and cryptographic traces for a specific run.
Register endpoints for real-time event-driven agent updates.