Hyperbrowser · Arazzo Workflow

Hyperbrowser Session Lifecycle

Version 1.0.0

Create a cloud browser session, inspect it, and stop it cleanly.

1 workflow 1 source API 1 provider
View Spec View on GitHub Headless BrowserBrowser InfrastructureWeb ScrapingWeb CrawlingData ExtractionAI AgentsBrowser AutomationComputer UseStealthProxiesCAPTCHA SolvingMCPHyperAgentx402ArazzoWorkflows

Provider

hyperbrowser

Workflows

session-lifecycle
Create, inspect, and stop a single cloud browser session.
Creates a browser session with the supplied stealth and proxy options, retrieves its connection endpoints, and stops it once work is complete.
3 steps inputs: apiKey, timeoutMinutes, useProxy, useStealth outputs: liveUrl, sessionId, stopped
1
createSession
post-api-session
Create a new cloud browser session using the supplied launch options and capture its id and connection endpoints.
2
getSession
get-api-session-id
Read the session back by id to confirm it launched and is in the active status before any automation is driven against it.
3
stopSession
put-api-session-id-stop
Stop the session to release the cloud browser and end billing once the automation work against it is complete.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Hyperbrowser Session Lifecycle
  summary: Create a cloud browser session, inspect it, and stop it cleanly.
  description: >-
    The core lifecycle for a Hyperbrowser cloud Chromium session. The workflow
    creates a new session, reads back its connection details (live view URL and
    websocket endpoint a client would drive), confirms the session is active,
    and then stops it to release the browser and stop billing. Every step spells
    out its request inline so the flow can be read and executed without opening
    the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: sessionsApi
  url: ../openapi/hyperbrowser-sessions-api-openapi.yml
  type: openapi
workflows:
- workflowId: session-lifecycle
  summary: Create, inspect, and stop a single cloud browser session.
  description: >-
    Creates a browser session with the supplied stealth and proxy options,
    retrieves its connection endpoints, and stops it once work is complete.
  inputs:
    type: object
    required:
    - apiKey
    properties:
      apiKey:
        type: string
        description: Hyperbrowser account API key sent in the x-api-key header.
      useStealth:
        type: boolean
        description: Whether to launch the session with stealth mode enabled.
      useProxy:
        type: boolean
        description: Whether to route the session through a managed proxy.
      timeoutMinutes:
        type: number
        description: Idle timeout in minutes before the session is auto-stopped.
  steps:
  - stepId: createSession
    description: >-
      Create a new cloud browser session using the supplied launch options and
      capture its id and connection endpoints.
    operationId: post-api-session
    parameters:
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    requestBody:
      contentType: application/json
      payload:
        useStealth: $inputs.useStealth
        useProxy: $inputs.useProxy
        timeoutMinutes: $inputs.timeoutMinutes
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      sessionId: $response.body#/id
      liveUrl: $response.body#/liveUrl
      wsEndpoint: $response.body#/wsEndpoint
  - stepId: getSession
    description: >-
      Read the session back by id to confirm it launched and is in the active
      status before any automation is driven against it.
    operationId: get-api-session-id
    parameters:
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: id
      in: path
      value: $steps.createSession.outputs.sessionId
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.status == "active"
      type: jsonpath
    outputs:
      status: $response.body#/status
      sessionUrl: $response.body#/sessionUrl
  - stepId: stopSession
    description: >-
      Stop the session to release the cloud browser and end billing once the
      automation work against it is complete.
    operationId: put-api-session-id-stop
    parameters:
    - name: x-api-key
      in: header
      value: $inputs.apiKey
    - name: id
      in: path
      value: $steps.createSession.outputs.sessionId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      success: $response.body#/success
  outputs:
    sessionId: $steps.createSession.outputs.sessionId
    liveUrl: $steps.createSession.outputs.liveUrl
    stopped: $steps.stopSession.outputs.success

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/hyperbrowser-session-lifecycle-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.