News
Use this lane when you want current coverage around a subject and a clean list of recent mentions.
Overview
This lane is for recent coverage, headlines, and article-level context. It is most useful when you want to see how a subject appears in public reporting right now.
Request
POST /osint/newsBase URL: https://test.intelfetch.dev/api/v1
Authentication: send your Bearer token in the Authorization header.
Body
{
"topic": "Acme Corp",
"language": "en",
"dateRange": "past_month"
}Fields
| Field | Required | Notes |
|---|---|---|
topic | Yes | The subject, name, brand, or phrase you want to track |
language | No | Helps narrow the result set |
dateRange | No | Useful when you only want recent coverage |
Response
The response is centered around findings.
Each item includes the title, summary, source, date, and link so you can scan quickly and open only the pieces that matter.
{
"findings": [
{
"title": "Acme Corp faces regulatory scrutiny over data practices",
"source": "NewsAPI",
"type": "news_and_media",
"url": "https://example.com/article",
"date": "2026-05-19T00:00:00Z"
}
]
}How to use it well
- Keep the subject concise.
- Add a date range when you only care about current coverage.
- Add a language filter when the result set spans too many regions.
- If the query is too broad, narrow the subject before adding more filters.