// All news
const news = await client.news.getNews({ limit: 10 });
// Symbol-specific
const aaplNews = await client.news.getNews({ symbol: 'AAPL', limit: 5 });
// Category-specific
const techNews = await client.news.getNews({ category: 'technology', limit: 10 });
news.forEach(article => {
console.log(article.headline);
console.log(` Source: ${article.source}`);
});