Skip to main content

News

Financial news articles, newest-first.

The news sub-graph returns articles sorted newest-first by default. Filter with since / until and cap with limit.

{
entitiesByTickers(tickers: ["NVDA"]) {
news(filter: { limit: 5 }) {
title
date
link
}
}
}
curl https://api.jintel.ai/api/graphql \
-H "Authorization: Bearer $JINTEL_API_KEY" \
-d '{"query":"{ entitiesByTickers(tickers:[\"NVDA\"]) { news(filter:{ limit:5 }) { title date link } } }"}'