Get started with APIPoints using Supabase authentication.
Register using your email address. We'll send you a magic link — no password required.
💡 Tip: Magic links are sent to your email. Click the link to automatically log in.
After clicking the magic link, you'll be taken to your dashboard where you can:
Dashboard URL: https://APIPoints.site/dashboard.html
Choose a plan that fits your needs. All plans include:
Click "Upgrade" in your dashboard to open Stripe checkout via Supabase Edge Function.
We're migrating our API endpoints to use Supabase authentication. Currently, API access uses legacy Worker endpoints, but we're working on integrating Supabase tokens.
🚧 Under Construction: The API documentation will be updated once Supabase integration is complete. For now, you can access legacy endpoints at https://APIPoints-api-v3.francis-e3b.workers.dev (requires old API key).
APIPoints now uses Supabase for:
For developers: You can interact with Supabase directly using the JS client:
// Initialize Supabase client
const supabase = window.supabase.createClient(
'https://kktblezpchfsoovxbgcd.supabase.co',
'sb_publishable_2NiWJlBrp5wGywLL919bzA_5Y5WExGG'
);
// Sign in with magic link
await supabase.auth.signInWithOtp({
email: 'user@APIPoints.site',
options: { emailRedirectTo: 'https://APIPoints.site/dashboard' }
});