Developer docs

Hyperbrowser integration

Hyperbrowser is a next-generation platform empowering AI agents and enabling…

Updated June 2026 43 actions available

Provider
hyperbrowser
Category
Other
Setup
User-supplied API key
Actions
43 available

Quick start

Call Hyperbrowser from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Hyperbrowser's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "HYPERBROWSER_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Hyperbrowser API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

43 actions exposed via the Hyperbrowser integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 43 actions
  • HYPERBROWSER_GET_CUA_TASK_RESULT
  • HYPERBROWSER_GET_CUA_TASK_STATUS
  • HYPERBROWSER_GET_EXTRACT_JOB_RESULT
  • HYPERBROWSER_GET_EXTRACT_JOB_STATUS
  • HYPERBROWSER_GET_GEMINI_COMPUTER_USE_TASK_RESULT
  • HYPERBROWSER_GET_HYPER_AGENT_TASK_RESULT
  • HYPERBROWSER_GET_PROFILE
  • HYPERBROWSER_GET_SCRAPE_JOB_RESULT
  • HYPERBROWSER_GET_SCRAPE_JOB_STATUS
  • HYPERBROWSER_GET_SESSION_DETAILS
  • HYPERBROWSER_GET_SESSION_DOWNLOADS_URL
  • HYPERBROWSER_GET_SESSION_RECORDING
  • HYPERBROWSER_GET_SESSION_VIDEO_RECORDING_URL
  • HYPERBROWSER_GET_WEB_CRAWL_RESULT
  • HYPERBROWSER_GET_WEB_CRAWL_STATUS
  • HYPERBROWSER_LIST_EXTENSIONS
  • HYPERBROWSER_LIST_PROFILES
  • HYPERBROWSER_LIST_SESSIONS
  • HYPERBROWSER_SEARCH_WEB
  • HYPERBROWSER_START_BROWSER_USE_TASK
  • HYPERBROWSER_START_CLAUDE_COMPUTER_USE_TASK
  • HYPERBROWSER_START_CRAWL_JOB
  • HYPERBROWSER_START_CUA_TASK
  • HYPERBROWSER_START_EXTRACT_JOB
  • HYPERBROWSER_START_GEMINI_COMPUTER_USE_TASK
  • HYPERBROWSER_START_WEB_CRAWL
  • HYPERBROWSER_STOP_BROWSER_USE_TASK
  • HYPERBROWSER_STOP_CLAUDE_COMPUTER_USE_TASK
  • HYPERBROWSER_STOP_CUA_TASK
  • HYPERBROWSER_STOP_GEMINI_COMPUTER_USE_TASK
  • HYPERBROWSER_STOP_SESSION

Build with Hyperbrowser

Open OverSkill, describe what you want to build, and reference Hyperbrowser in your prompt — the AI will wire up the integration automatically.