Your developer credentials are verified. Choose your Username and Password to finalize your Flowork account:
Applications & Client Projects
Manage client applications connected to Sovereign AI Router Gateway
📦
No Applications Created Yet
Create your first application to get an App ID, Client Secret, OAuth SSO Redirect, and connect to the 19872402.floworkos.com AI Gateway.
🌐 Universal AI Providers & Models Catalog
Explore 116 registered AI providers & 830+ models supported natively across the Sovereign Router.
⚡ Universal Single Sign-On (SSO) & OAuth 2.0 Integration
Enable "Sign in with Flowork" on your Web, Mobile, or Desktop application. When users authenticate, your redirect callback captures their identity and AI mesh.
Client Web SDK (HTML / JS Embed)
<!-- Include Flowork Sovereign SSO SDK -->
<script src="https://flowork-auth.pages.dev/sdk.js"></script>
<!-- Render Sign In Button in Your App -->
<div id="flowork-sso-button"></div>
<script>
FloworkAuth.renderButton(document.getElementById('flowork-sso-button'), {
appId: '<YOUR_APP_ID>',
redirectUri: 'https://your-app.com/api/auth/callback',
onSuccess: (userData) => {
console.log('✓ Authenticated User:', userData.user.username);
console.log('⚡ Active AI Mesh:', userData.mesh);
}
});
</script>
⚡ AI Gateway SDK (Direct Chat Completions)
Node.js / Python OpenAI-Compatible Snippet
import OpenAI from 'openai';
const client = new OpenAI({
baseURL: 'https://19872402.floworkos.com/v1',
apiKey: '<YOUR_CLIENT_API_KEY>' // Generated in your App Card
});
const response = await client.chat.completions.create({
model: 'coder', // or 'default', 'chat'
messages: [{ role: 'user', content: 'Solve this coding problem...' }]
});
console.log(response.choices[0].message.content);
🛡️ 3-Tier Sovereign Resiliency & Fallback Rules
Every application you create is backed by multi-level failover so your users never experience downtime.
Tier 1
Sovereign Router Failover
Primary AI Model ➔ Auto-failover to Secondary Mesh across 116 Providers
➔
Tier 2
Custom Backup API Key
If Gateway quota exhausted, use your direct OpenAI / Groq / OpenRouter Key.
➔
Tier 3
User Backend Fallback URL
HTTP POST failover webhook to your server endpoint: https://api.your-app.com/ai-fallback