Documentation

Getting Started

AlphaIota provides a simple way to authenticate users and manage API keys for AI providers. This documentation will help you get started with integrating AlphaIota into your application.

Note: AlphaIota is currently in private beta.Join our waitlist to get early access.

Authentication

AlphaIota uses OAuth2 for authentication. Here's how to implement the authentication flow:

Authentication Example
1// Industry-standard OAuth2
2const AIOAuth2Client = new AlphaIotaOAuth2Client({
3  clientKey: "your-api-key", // AlphaIota Key
4  redirectUri: "https://your-app.com/callback",
5  scopes: ["name", "email", "picture", "keys:openai", "mcp:google.calendar.all"],
6});
7
8// On backend
9const loginUrl = AIOAuth2Client.loginUrl();
10
11// On frontend
12return <a href={loginUrl}>Login with AlphaIota</a>;
// Type-safe!

API Keys

AlphaIota manages API keys for various AI providers. Here's how to use them:

API Key Management Example
1// AlphaIota manages all provider keys
2const AIClient = new AlphaIotaClient({
3  clientKey: "your-api-key", // AlphaIota Key
4  credentials: {
5    accessToken: "user-access-token",
6    refreshToken: "user-refresh-token",
7  },
8});
9
10// Use any supported provider
11const openAIClient = AIClient.provider("openai");
12
13// Automatic usage tracking and billing
14const response = await openAIClient.chat.completions.create({
15  model: "gpt-4o",
16  messages: [{ role: "user", content: "Hello" }]
17});
// Type-safe!

MCP Integration

AlphaIota provides seamless integration with MCP servers. Documentation coming soon.

Coming Soon: Detailed documentation on MCP integration.

SDK Reference

Full SDK reference documentation coming soon.

Coming Soon: Full SDK reference documentation.