HarborHarbor
DocumentationGuidesPlugins
All plugins

Browser-use API

Official Browser-use Cloud API imported from its OpenAPI spec

APICategory: webPopularity 58browser_use_api

Official Browser-use Cloud API imported from its OpenAPI spec

Install

hrbr plugins install browser-use-api

Harbor calls https://api.browser-use.com/api/v3 (driven by the upstream OpenAPI spec).

Quick start

hrbr exec 'return await browser_use_api.get({ /* see schema */ })'

Or from a Function:

import { defineOrbitJob } from "@hrbr/orbit";

export default defineOrbitJob({
  name: "browser-use-api-example",
  handler: async (ctx) => {
    return await ctx.plugins.browser_use_api.list({ limit: 5 });
  },
});

Tools

Tools are generated from the upstream OpenAPI spec. Inspect with:

hrbr plugins tools browser-use-api

Or open the dashboard plugin page for the live tool list.