Sometimes you just need what's on the page. The words, the headings, the text. Not a scraping script, not an NLP pipeline — just the content. denkbot.dog fetches any URL and extracts the readable content automatically. The dog brings it home.
Content aggregation, news readers, read-later apps, content summarization pipelines, and any application that needs website text content without the HTML cruft.
const { text, title } = await fetch('https://api.denkbot.dog/scrape', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({ url: 'https://blog.example.com/article' }),
}).then(r => r.json())
console.log(`Title: ${title}`)
console.log(`Content: ${text.slice(0, 500)}`)Yes. HTML stripped, whitespace normalized. Not perfect, but usable.
It extracts all visible text. Navigation and sidebar content will be included unless you filter it.
Not yet. Plain text only for now. Markdown output is on the roadmap.

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