All plugins
Supabase Management API
Official Supabase Management API imported from Supabase's OpenAPI spec
APICategory: devPopularity 87
supabase_apiOfficial Supabase Management API imported from Supabase's OpenAPI spec
Open in dashboard →
See the live tool list, OAuth status, and recent calls.
Install command
Run the install command shown below to add this plugin to your workspace.
Install
hrbr plugins install supabase-apiHarbor calls https://api.supabase.com (driven by the upstream OpenAPI spec).
Quick start
hrbr exec 'return await supabase_api.get({ /* see schema */ })'Or from a Function:
import { defineOrbitJob } from "@hrbr/orbit";
export default defineOrbitJob({
name: "supabase-api-example",
handler: async (ctx) => {
return await ctx.plugins.supabase_api.list({ limit: 5 });
},
});Tools
Tools are generated from the upstream OpenAPI spec. Inspect with:
hrbr plugins tools supabase-apiOr open the dashboard plugin page for the live tool list.