Developer Documentation & API Guide
Build, Deploy & Scale AI Agents
Integrate autonomous AI agents into your apps with our official Node.js SDK, Python SDK, REST APIs, or low-code Agent Builder.
Node.js / TypeScript SDK
npm install @intellinix/sdk
import { IntelliNix } from '@intellinix/sdk';
const client = new IntelliNix({
apiKey: process.env.INTELLINIX_API_KEY
});
const execution = await client.agents.run({
agentId: 'researcher-v2',
input: { prompt: 'Analyze competitors' }
});Python SDK
pip install intellinix
from intellinix import IntelliNix
client = IntelliNix(api_key="your_api_key")
execution = client.agents.run(
agent_id="coding-assistant",
input={"task": "Build React component"}
)
print(execution.output)Core Architecture & Integration Guides
E2B Sandboxing Security Model
Learn how IntelliNix executes custom Python/JS agent tools inside isolated MicroVM sandboxes with network restrictions, memory caps, and instant cleanup.
REST API Endpoint Reference
Explore open HTTP API specifications for triggering agent executions, streaming Server-Sent Events (SSE) logs, managing agent state, and webhooks.
Visual Agent Builder
Configure prompt templates, system personas, model routing preferences, tool definitions, and memory indexes directly in our interactive web builder.