browserbase_stagehand_extract
Extract structured data or text from web pages using specific instructions. Define what information to collect from the current page for automated data extraction.
Instructions
Extract structured data or text from the current page using an instruction.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| instruction | Yes | The specific instruction for what information to extract from the current page. Be as detailed and specific as possible about what you want to extract. For example: 'Extract all product names and prices from the listing page'.The more specific your instruction, the better the extraction results will be. |
Input Schema (JSON Schema)
{
"properties": {
"instruction": {
"description": "The specific instruction for what information to extract from the current page.\n Be as detailed and specific as possible about what you want to extract. For example:\n 'Extract all product names and prices from the listing page'.The more specific your instruction,\n the better the extraction results will be.",
"type": "string"
}
},
"required": [
"instruction"
],
"type": "object"
}