NEXORA.
Developer Hub

API Reference & SDK Integration

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)
Response: 200 OK (38ms)
JSON Schema Validated

Core REST Endpoints

POST/v1/agents/dispatch

Synchronous execution dispatch with strict JSON output guarantee.

GET/v1/executions/:id

Retrieve state, logs, and cryptographic traces for a specific run.

POST/v1/webhooks/subscribe

Register endpoints for real-time event-driven agent updates.