Skip to content

Quick Start

Get started with Connix in just a few minutes. This guide will walk you through creating your first project and launching an AI agent.

  • An API key from console.connix.io
  • Your preferred SDK (Go, JavaScript, Python, Java, or C++)
  1. Sign up at console.connix.io
  2. Navigate to SettingsAPI Keys
  3. Click Generate New API Key
  4. Copy your API key (keep it secure!)

Choose your preferred language:

Terminal window
npm install @connix/sdk
import { ConnixClient } from '@connix/sdk';
const client = new ConnixClient({
apiKey: 'your-api-key-here'
});
async function quickStart() {
// Create a project
const project = await client.createProject({
name: 'my-first-project'
});
console.log(`✅ Project created: ${project.name}`);
// Launch an agent
const agent = await client.launchAgent({
name: 'hello-agent',
projectId: project.id
});
console.log(`🚀 Agent launched: ${agent.message}`);
}
quickStart().catch(console.error);

Run your code and you should see output similar to:

✅ Project created: my-first-project
🚀 Agent launched: Agent 'hello-agent' successfully launched in project 'my-first-project'

Congratulations! You’ve successfully:

  • ✅ Created your first Connix project
  • ✅ Launched an AI agent
  • ✅ Verified the Connix API is working
  • Double-check your API key is correct
  • Ensure you’re using the API key from the correct environment
  • Check your internet connection
  • The default timeout is 30 seconds - increase if needed
  • You’re making requests too quickly
  • Implement exponential backoff (built into most SDKs)

Need more help? Check our authentication guide or contact support.