Skip to main content

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.
ticker
string
required
Stock ticker symbol

Example

const news = await client.news.company('AAPL');

country()

country(country: string): Promise<ApiResponse>
Get news filtered by country.
country
string
required
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.
category
string
required
News category

Example

const news = await client.news.category('technology');