scrapeWebContent
Extract main text content from any website URL for accurate data retrieval. Ideal for research and automation tasks, supporting cryptocurrency and Ethereum-based workflows.
Instructions
Given a URL, fetch the page's HTML and return the main text content as accurately as possible. Works for most websites.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
website | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"website": {
"type": "string"
}
},
"required": [
"website"
],
"type": "object"
}