Calimatic Connect|Documentation
PricingSign In
Supabase

Supabase

Open-source Firebase alternative with Postgres.

Databaseapi_key_authproxy

Connect Supabase

Supabase uses API key authentication. Send your credentials directly via the connect endpoint:

POST /connect/v1/providers/supabase/connect
# Headers
Authorization: YOUR_JWT_TOKEN
Content-Type: application/json
# Body
{
"credentials": { "apiKey": "your-api-key" }
}

Make API Calls via Proxy

Use the proxy endpoint to make authenticated API calls to Supabase without managing tokens yourself. Calimatic Connect handles credential injection and token refresh automatically.

POST /connect/v1/proxy/supabase
# Headers
Authorization: YOUR_JWT_TOKEN
Content-Type: application/json
# Body
{
"method": "GET",
"path": "/me"
}

Check Status

Verify whether your Supabase connection is active and credentials are valid:

GET /connect/v1/providers/supabase/status
# Headers
Authorization: YOUR_JWT_TOKEN

Disconnect

Remove the Supabase connection and revoke stored credentials:

DELETE /connect/v1/providers/supabase/disconnect
# Headers
Authorization: YOUR_JWT_TOKEN