search_news
Search Pure Report's neutral, bias-scored news. Returns articles rewritten to remove loaded language; bias_score (0-100) rates the ORIGINAL source reporting before neutralization (0 = wire-neutral, 100 = advocacy), NOT the returned rewrite, which is neutral by design. Each result also lists the event(s) it belongs to — pass an event slug to get_event for the neutral writeup or compare_coverage for cross-outlet framing. Ranked by relevance and recency.
Parameters3
| query | string | required | Keywords or phrase, e.g. "Iran sanctions" or "2026 election". |
| topic | string | optional | Optional topic-slug filter. An unrecognized value searches all topics and returns a warning. |
| limit | integer | optional | Max results, 1-40 (default 15). |
Raw schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Keywords or phrase, e.g. \"Iran sanctions\" or \"2026 election\"."
},
"topic": {
"type": "string",
"enum": [
"politics",
"business",
"world",
"technology",
"health",
"science",
"justice",
"defense",
"climate-energy",
"media",
"education",
"culture",
"sports",
"local",
"opinion",
"real-estate"
],
"description": "Optional topic-slug filter. An unrecognized value searches all topics and returns a warning."
},
"limit": {
"type": "integer",
"description": "Max results, 1-40 (default 15)."
}
},
"required": [
"query"
]
}