Developer Portal
Arvix Docs
Integrate your company's intelligence into existing workflows, query knowledge graphs programmatically, and build autonomous agents.
Guide
Getting Started
Learn core concepts, setup credentials, and initialize the client SDK in under 5 minutes.
Read Document
REST API
API Reference
Explore endpoint configurations for indexing files, vector querying, and reasoning flows.
Read Document
MCP Spec
Model Control Protocol
Connect LLMs to enterprise-controlled data context layers using our custom MCP toolkits.
Read Document
Auth & RBAC
Access & Security
Understand enterprise RBAC, document permission mapping, and authorization flows.
Read Document
Developer Platform
Everything developers need.
APIs, SDKs, CLI, webhooks, and a plugin platform — build on Arvix your way.
REST APIs
OpenAPI
Go SDK
TypeScript SDK
MCP Server
Plugin Platform
CLI
Webhooks
SSE
Event Streams
quickstart.ts
import { Arvix } from "@Arvixlabs/sdk";const client = new Arvix({ apiKey: process.env.BRAINERS_API_KEY,});// Ask your entire organization a questionconst answer = await client.query({ question: "What changed in our compliance policy?", includeSources: true,});console.log(answer.text); // "Three changes took effect in Q2..."console.log(answer.sources); // [{ doc: "Compliance Policy v4", score: 0.98 }]