web_data_yahoo_finance_business
Extract structured business data from Yahoo Finance pages using cache lookup for reliable access to company information without web scraping.
Instructions
Quickly read structured yahoo finance business data. Requires a valid yahoo finance business URL. This can be a cache lookup, so it can be more reliable than scraping
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| url | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "url": {
      "format": "uri",
      "type": "string"
    }
  },
  "required": [
    "url"
  ],
  "type": "object"
}