Hyperbrowser · Example Payload

Hyperbrowser Extract Example

Headless BrowserBrowser InfrastructureWeb ScrapingWeb CrawlingData ExtractionAI AgentsBrowser AutomationComputer UseStealthProxiesCAPTCHA SolvingMCPHyperAgentX402

Hyperbrowser Extract Example is an example object payload from Hyperbrowser, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationrequestresponse

Example Payload

Raw ↑
{
  "operation": "POST /api/extract",
  "request": {
    "urls": [
      "https://hyperbrowser.ai/pricing"
    ],
    "prompt": "Extract every pricing tier with monthly price, included credits, and overage rate.",
    "schema": {
      "type": "object",
      "properties": {
        "tiers": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "monthlyPriceUsd": {
                "type": "number"
              },
              "includedCredits": {
                "type": "number"
              },
              "overagePerCreditUsd": {
                "type": "number"
              }
            }
          }
        }
      }
    }
  },
  "response": {
    "jobId": "extract_01HZ8YQ2NJEXAMPLE",
    "status": "pending"
  }
}