get_url_content
Extract content from any URL using the Tavily API to retrieve real-time web page data for analysis or integration into AI workflows.
Instructions
Get the content from a specific URL using Tavily API
Args:
    url (str): The URL to extract content from
    
Returns:
    str: The extracted content from the URL
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| url | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "url": {
      "title": "Url",
      "type": "string"
    }
  },
  "required": [
    "url"
  ],
  "title": "get_url_contentArguments",
  "type": "object"
}