Skip to content

Managed secret providers

Supabase

Connect Supabase to Alter Vault for secure API access

Use Supabase credentials to make authenticated API calls through Alter Vault without exposing API keys in code.

PropertyValue
Provider IDsupabase
CategoryDeveloper Tools
Credential TypeBearer Token

Log in to the Supabase Dashboard

Log in to the Supabase Dashboard at supabase.com/dashboard.

Select your project

Select your project.

Go to Settings → API

Go to Settings → API.

Copy your API key

Copy the ‘anon’ key (safe for client-side) or ‘service_role’ key (server-side only, bypasses RLS).

Copy the Project URL

Copy the Project URL (e.g. your-project.supabase.co) for the Project URL field.

Open the Developer Portal

Go to portal.alterauth.com and navigate to the application.

Add Supabase

Go to Managed Secrets > Add Provider > Supabase.

Enter credentials

Paste your API Key and Project URL into their respective fields.

Save

Click Save. You’ll receive a grant_id to use with the SDK.

response = await alter_app.request(
HttpMethod.GET,
"https://your-project.supabase.co/rest/v1/your_table",
grant_id="YOUR_GRANT_ID",
)