general()
general(): Promise<ApiResponse>
Get general financial news.
Example
const news = await client.news.general();
company()
company(ticker: string): Promise<ApiResponse>
Get company-specific news.
Example
const news = await client.news.company('AAPL');
country()
country(country: string): Promise<ApiResponse>
Get news filtered by country.
Country code (e.g., “US”, “UK”)
Example
const news = await client.news.country('US');
category()
category(category: string): Promise<ApiResponse>
Get news filtered by category.
Example
const news = await client.news.category('technology');