ADD AI TO YOUR APP. EARN MONEY. ZERO PAYMENT HASSLE.
Quick Start Guide
Watch this quick video to get started with AI Pass in minutes
BYOK for Everyone
Remember how BYOK simplified AI integration? AI Pass does the same for your end users.
👨💻
Technical Users
Traditional BYOK
✓ Create API key at OpenAI
✓ Figure out how to create token
✓ Copy and paste it into apps
⚠️ Apps might store your key
⚠️ No visibility into app usage
✓ Pay as you use
✓ Use AI across many apps
=
👥
End Users
AI Pass (BYOK for Everyone)
✓ Create wallet at AI Pass
✓ Click "Connect AI Pass"
🔒 OAuth-based security
🔒 Apps never store your credentials
✓ Revoke access anytime
✓ See usage per app
✓ Pay as you use
✓ Use AI across many apps
🎯 The Developer Advantage
Instead of asking users to create OpenAI accounts and manage API keys, they can connect their AI Pass wallet (OAuth) - a consumer-friendly version of BYOK.
Zero user onboarding friction + Automatic revenue share = More users, more revenue, less hassle.
Why Developers Choose AI Pass
EARN REVENUE WITHOUT BUILDING PAYMENTS
Start earning immediately on every AI interaction. We handle all payment
processing, you collect 50% of our markup with zero effort. That's ~10% of every
euro spent through your integration, automatically deposited to your account.
ONE API, ALL AI MODELS
Access OpenAI, Anthropic Claude, Google Gemini, and more through a single, consistent API.
Stop juggling multiple vendor integrations and API keys.
SEAMLESS CUSTOMER EXPERIENCE
Your users sign up just once to AI Pass, maintain a single wallet, and use their credits
across all participating apps. No account creation or payment friction for each new AI
feature.
LAUNCH IN DAYS, NOT MONTHS
Integrate our SDK in minutes. Leverage our WordPress plugins and no-code tools to add AI to
your app without extensive development time.
How It Works
1
Add Our SDK
Include our JavaScript SDK and initialize with your client credentials
2
Connect Users
Add an OAuth button to your app that starts the AI Pass authorization
flow
3
Make API Calls
After authentication, start making AI API calls using our simple methods
Built For Every Developer
WordPress Creators
Add AI to your plugins and themes
No-Code Builders
Integrate AI in Bubble, Zapier, or Make.com
Indie Developers
Add AI features to your apps without the infrastructure headache
SaaS Companies
Accelerate your AI roadmap with minimal engineering effort
Technical Integration Is Simple
Add AI to your app in minutes with our Web SDK
// 1. Include our JavaScript SDK <script
src="https://aipass.one/aipass-sdk.js"></script>
// 2. Initialize the SDK (clientId is required)
AiPass.initialize({
clientId: 'your_client_id',
// optional: redirectUri, scopes, baseUrl
});
// 3. Start OAuth login await AiPass.login();
// 4. Make AI API calls // Chat Completion const chat = await AiPass.generateCompletion({
prompt: 'Explain quantum computing',
model: 'gpt-4'
});