News sites are everywhere. Their APIs are paywalled, inconsistent, or nonexistent. denkbot.dog scrapes any news URL and returns the article content as clean text. No newsroom API negotiations, no RSS parsing nightmares. The dog retrieves the article. You build the aggregator.
News aggregation, media monitoring, sentiment analysis pipelines, journalist research tools, and building custom news readers.
// Extract news article content
const { title, text, metadata, url } = await fetch(
'https://api.denkbot.dog/scrape',
{
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
url: 'https://news-site.com/article/breaking-story',
renderJs: false, // Most news sites are server-rendered
}),
}
).then(r => r.json())
// metadata.ogTitle, metadata.ogDescription, metadata.ogImage
// are usually populated on news articlesNo. If an article requires a subscription, we can't access the content.
It's often in the HTML or meta tags. Check metadata.ogPublishDate or parse it from the HTML.
Yes. AMP pages are just HTML.

€19/year. Unlimited requests. API key ready in 30 seconds.