Quick Start Guide

Get started with AgentLayer using Supabase authentication.

STEP 1

Create Your Account

Register using your email address. We'll send you a magic link — no password required.

Register Now →

💡 Tip: Magic links are sent to your email. Click the link to automatically log in.

STEP 2

Access Your Dashboard

After clicking the magic link, you'll be taken to your dashboard where you can:

Dashboard URL: https://agentlayer.site/dashboard.html

STEP 3

Upgrade Your Plan

Choose a plan that fits your needs. All plans include:

Click "Upgrade" in your dashboard to open Stripe checkout via Supabase Edge Function.

STEP 4

API Access (Coming Soon)

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://agentlayer-api-v3.francis-e3b.workers.dev (requires old API key).

Supabase Integration Details

AgentLayer 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@agentlayer.site',
  options: { emailRedirectTo: 'https://agentlayer.site/dashboard' }
});