AI
Pass

Build an AI Bio Generator with AI Pass SDK

What You Will Build

A bio generator that creates platform-optimized bios. Auth handled by AI Pass.

Step 1: Get Client ID

Developer Dashboard → OAuth2 Clients → Create → Copy Client ID.

Step 2: Initialize

<script src="https://aipass.one/aipass-sdk.js"></script>
<script>
  AiPass.initialize({ clientId: 'YOUR_CLIENT_ID', requireLogin: true });
</script>

Step 3: Generate Bios

const r = await AiPass.generateCompletion({
  model: 'gpt-5-mini',
  messages: [
    { role: 'system', content: 'Generate 4 Instagram bios. Return JSON array.' },
    { role: 'user', content: 'Software engineer who loves hiking' }
  ]
});
const bios = JSON.parse(r.choices[0].message.content);

Revenue

50% commission on every API call.

Related