News articles
News and article documents from indexed sources, filterable by topic, organization, and mentioned events.
News articles are the full article corpus — coverage and other article-type sources — without requiring a relation-extraction label. Use mentionsEvents when you only want articles that mention a product launch, partnership, investment, or acquisition.
Endpoints:
POST /proof-points/news-articles/search— playgroundPOST /proof-points/news-articles/time-series— playgroundPOST /proof-points/news-articles/correlation-matrix— playground
For grouped partnership or product-launch events, prefer Manifestations.
Typical Questions
- How is media coverage evolving around this trend?
- Which articles mention organizations in my scope?
- Which articles are labeled as product launches or partnerships?
Type-specific filters
On top of the shared proof-point fields:
mentionsEvents—product-launch,partnership,investment,acquisitionsourceIsPremium— restrict to premium sourcessourceCountryIds— source country UUIDs
Request Patterns
Search
{
"query": "solid-state batteries",
"topicIds": ["11111111-1111-1111-1111-111111111111"],
"start": "2023-01-01T00:00:00Z",
"end": "2024-12-31T23:59:59Z",
"mentionsEvents": ["product-launch"],
"take": 25,
"skip": 0,
"sortColumn": "published_at",
"sortDirection": "desc"
}Time series
{
"topicIds": ["11111111-1111-1111-1111-111111111111"],
"resolution": "month",
"start": "2023-01-01T00:00:00Z",
"end": "2024-12-31T23:59:59Z"
}Response Notes
Search returns a page of enriched documents: title, summary, url, publishedAt, source, topics, orgNodes, and related entity nodes. Time series returns labels and counts per bucket.