firecrawlsearchagent_firecrawl_scrape_url
Extract full content from a specific URL using this tool. It retrieves complete raw web page data for analysis or integration into workflows, with customizable wait time for page loading.
Instructions
Scrape full contents from a specific URL. This provides complete raw web contents from individual web pages.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | The URL to scrape and analyze | |
wait_time | No | Time to wait for page to load in milliseconds (default: 5000) |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "The URL to scrape and analyze",
"type": "string"
},
"wait_time": {
"default": 5000,
"description": "Time to wait for page to load in milliseconds (default: 5000)",
"type": "integer"
}
},
"required": [
"url"
],
"type": "object"
}