Supabase is an open-source backend-as-a-service providing a Postgres database, authentication, storage, and real-time subscription APIs for building modern applications
Executes a given sql query against the project's database; use for advanced data operations or when standard api endpoints are insufficient, ensuring queries are valid postgresql and sanitized.
Creates a new supabase organization, which serves as a top-level container for projects, billing, and team access.
Creates a new supabase project, requiring a unique name (no dots) within the organization; project creation is asynchronous.
Lists all organizations (id and name only) associated with the supabase account, excluding project details within these organizations.
Retrieves a list of all supabase projects, including their id, name, region, and status, for the authenticated user.
Creates a 'publishable' or 'secret' api key for an existing supabase project, optionally with a description; 'secret' keys can have customized jwt templates.