📊Data Extraction

Extract Website Metadata via API

Metadata lives in the `<head>`. Getting it means fetching the page, parsing HTML, chasing redirects, and hoping the meta tags are actually there. The dog sniffs it out. Send any URL, get back every meta tag you care about, cleanly structured.

What you'd use this for

Building link preview cards, populating CMS fields, SEO auditing, social media preview generation, and enriching URLs with title/description/image data.

How it works

example
curl -X POST https://api.denkbot.dog/scrape \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://example.com/article" }' \
  | jq '.metadata'

Questions & Answers

What metadata fields does it return?+

description, keywords, ogTitle, ogDescription, ogImage, ogUrl, twitterCard, twitterTitle, twitterImage, canonical.

What if OG tags are missing?+

Those fields will be null. We return what's there.

Does it follow redirects?+

Yes. The finalUrl field shows where you actually ended up.

Ready to start fetching?

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