Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.alterauth.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Use Supabase credentials to make authenticated API calls through Alter Vault without exposing your API keys in code.
PropertyValue
Provider IDsupabase
CategoryDeveloper Tools
Credential TypeBearer Token

Step 1: Get Your Credentials

1

Log in to the Supabase Dashboard

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

Select your project

Select your project.
3

Go to Settings → API

Go to Settings → API.
4

Copy your API key

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

Copy the Project URL

Copy the Project URL (e.g. your-project.supabase.co) for the Project URL field.
Never share your credentials publicly. Store them securely and only enter them in the Alter Vault Developer Portal.

Step 2: Add to Alter Vault

1

Open the Developer Portal

Go to portal.alterauth.com and navigate to your app.
2

Add Supabase

Go to Managed Secrets > Add Provider > Supabase.
3

Enter your credentials

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

Save

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

Using in Code

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