read_news
Extract structured news content from CoinDesk articles, including title, author, publication date, and full text, using a provided URL. Simplifies article retrieval and parsing for quick insights.
Instructions
Retrieves and extracts the full content of a specific news article from CoinDesk.
Fetches the HTML content from the provided URL, processes it to extract
structured news information including title, subtitle, author, publication date,
and article content.
Args:
url (str): The complete URL of the CoinDesk news article to retrieve
Returns:
str: A formatted string containing the article's title, subtitle, author,
publication information, and content preview
Raises:
HTTPStatusError: If the URL request fails
Exception: If article parsing encounters errors
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "read_newsArguments",
"type": "object"
}