Get company news
GET
/api/v1/public/companies/:ticker/news1 credit / callAPI key required
Get recent news articles for a company.
Parameters
Path
Company ticker symbol (1-5 letters, case-insensitive)
Query
Maximum number of articles (1-50, default 20)
Page number for pagination (default 0)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/companies/AAPL/news?limit=10' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/companies/AAPL/news?limit=10example · 200
{
"data": {
"ticker": "AAPL",
"news": [
{
"id": 1000000007,
"title": "Apple Stock Is Down After WWDC. There's More to Its AI Strategy Than Meets the Eye.",
"summary": "Apple stock isn't moving higher since its WWDC. However, the iPhone maker's AI strategy could bear fruit, according to Citi analysts.",
"url": "https://www.barrons.com/articles/apple-stock-price-ai-wwdc-d9ba8a77",
"ticker": "AAPL",
"category": "other",
"newsCategory": "market",
"publisher": "barrons.com",
"published_at": "2026-06-16 08:11:00",
"significance": null,
"is_wire_service": false
},
{
"id": 1000000008,
"title": "Apple Faces Italy Cloud Probe",
"summary": "Apple (AAPL, Financials) is facing another regulatory headache in Europe, this time in Italy. Italy's competition regulator opened a probe into Apple's cloud se",
"url": "https://www.gurufocus.com/news/8918166/apple-faces-italy-cloud-probe",
"ticker": "AAPL",
"category": "other",
"newsCategory": "market",
"publisher": "gurufocus.com",
"published_at": "2026-06-16 07:26:00",
"significance": null,
"is_wire_service": false
},
{
"id": 1000000009,
"title": "Apple once faced a US export control on its 'supercomputer.' Steve Jobs turned it into a marketing moment.",
"summary": "Steve Jobs once turned the prospect of a US export restriction into a marketing moment. In 1999, Apple's Power Mac G4 \"supercomputer\" exceeded the allowed computing threshold for US exports to some countries.",
"url": "https://www.businessinsider.com/apple-steve-jobs-us-export-control-marketing-moment-anthropic-2026-6",
"ticker": "AAPL",
"category": "other",
"newsCategory": "market",
"publisher": "businessinsider.com",
"published_at": "2026-06-16 05:00:01",
"significance": null,
"is_wire_service": false
}
]
}
}