get_cafef_market_news
Retrieve Vietnamese stock market news and analysis from CafeF to monitor financial updates, track market trends, and filter articles by keywords or format.
Instructions
Get latest stock market news from CafeF (cafef.vn). Scrapes and returns comprehensive market news, analysis, and updates from Vietnam's leading financial news website. Uses Firecrawl API for reliable web scraping.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of news articles to return (default: 20, max: 100) | |
| search | No | Optional search query to filter news by keywords (e.g., 'VIC', 'VN-Index', 'ngân hàng') | |
| format | No | Output format: 'markdown' (formatted text), 'json' (structured data), or 'text' (plain text). Default: 'markdown' | markdown |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "markdown",
"description": "Output format: 'markdown' (formatted text), 'json' (structured data), or 'text' (plain text). Default: 'markdown'",
"enum": [
"markdown",
"json",
"text"
],
"type": "string"
},
"limit": {
"default": 20,
"description": "Maximum number of news articles to return (default: 20, max: 100)",
"type": "number"
},
"search": {
"description": "Optional search query to filter news by keywords (e.g., 'VIC', 'VN-Index', 'ngân hàng')",
"type": "string"
}
},
"type": "object"
}