import { BrowserUseClient } from "browser-use-sdk";
export default defineComponent({
props: {
browser_use: {
type: "app",
app: "browser_use",
}
},
async run({steps, $}) {
const client = new BrowserUseClient({
apiKey: this.browser_use.$auth.api_key,
});
return await client.billing.getAccountBilling()
},
})
Browser Use uses API keys for authentication. When you connect your Browser Use account, Pipedream securely stores the keys so you can easily authenticate to Browser Use APIs in both code and no-code steps.