Back to Providers
Supabase

Supabase

Supabase PostgREST, Auth, and Storage API emulator

DatabasedatabaseauthbaasRESTv0.1.0

Quick Start

# Insert a row
curl -X POST http://localhost:7500/supabase/rest/v1/todos \
  -H "apikey: fake" \
  -H "Content-Type: application/json" \
  -H "Prefer: return=representation" \
  -d '{"title":"Hello","done":false}'

# Query rows
curl "http://localhost:7500/supabase/rest/v1/todos?done=eq.false" \
  -H "apikey: fake"