Documentation

Everything you need to build with StudAI One. Guides, API reference, SDKs, and examples.

Simple, Intuitive APIs

Our APIs are designed to be easy to use. Send a message to any AI agent with just a few lines of code.

PythonJavaScriptPHPGoRuby
Contact Us for API Access
index.js
import { StudAI } from '@studai/sdk';

const client = new StudAI({
  apiKey: process.env.STUDAI_API_KEY
});

// Chat with Genie AI
const response = await client.chat({
  agent: 'genie',
  message: 'How do I reset my password?',
  context: { userId: '12345' }
});

console.log(response.message);
// "I can help you reset your password..."