News
Search and track news worldwide
Track breaking stories, search by keyword, monitor locations, and follow specific publishers. Covers trending headlines, location-based news, and publisher feeds. Supports 50+ regional editions in local languages with source attribution and direct links.
Find news articles matching a keyword or phrase with optional filters for time range, location, and publisher. The most flexible way to find specific coverage on any topic.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "news",
"skill": "search_news",
"input": {
"query": "artificial intelligence"
}
}' \
https://api.toolrouter.com/v1/tools/callGet top headlines and trending stories right now, optionally filtered by topic and region.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "news",
"skill": "trending_news",
"input": {}
}' \
https://api.toolrouter.com/v1/tools/callGet news about a specific city, state, or country. Useful for local news monitoring, travel research, and regional event tracking.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "news",
"skill": "location_news",
"input": {
"location": "London"
}
}' \
https://api.toolrouter.com/v1/tools/callGet recent articles from a specific news outlet by name or domain. Supports 40+ major publishers and any custom domain.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "news",
"skill": "publisher_news",
"input": {
"publisher": "reuters"
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"news","skill":"search_news","input":{}}' \
https://api.toolrouter.com/v1/tools/callFrequently Asked Questions
How do I find coverage for a specific topic or phrase?
`search_news` is the most flexible option. It supports exact phrases, exclusions, site filters, location filters, and time windows.
How do I see today's biggest headlines?
`trending_news` returns the current top stories, with optional region and topic filters.
Can I track local news or a specific outlet?
Yes. `location_news` focuses on a city, state, or country, and `publisher_news` pulls recent articles from a named outlet or domain.
Can I narrow results to a region or a recent time window?
Yes. Use `region` for localized editions and `when` for recency, from 1 hour to 30 days.