Search the news in real time.
Generic web search was never built for news — the cycle moves too fast and stale results miss the window. Medialyst runs a dedicated real-time news search and attaches the publication's metadata to every result — including whether it's original editorial or a newswire, plus authority and reach. That's context a plain search API never gives you.
- Built for the news cycle live coverage over keywords, URLs, or topics — not a stale web index.
- Editorial vs. newswire, classified know whether a result is original reporting or a press-release wire — plus authority and reach.
- 0.1 credits per search shared across UI, REST, and MCP.
// tbs "qdr:h" → only the last HOUR of news
search_news({
q: "AI safety regulation europe",
tbs: "qdr:h"
}){
"status": "success",
"data": { "articles": [
{
"title": "EU lawmakers press AI safety timeline",
"source": "Reuters",
"metadata": {
"publication_type": "editorial",
"domain_authority": 94,
"estimated_monthly_organic_traffic": 41000000
}
},
{
"title": "Vendor launches AI compliance toolkit",
"source": "PR Newswire",
"metadata": {
"publication_type": "newswire",
"domain_authority": 76,
"estimated_monthly_organic_traffic": 8200000
}
}
] }
}