Website Metadata API

Send any URL, get its metadata back as JSON — title, description, canonical, language, favicon and Open Graph — in a single call. No headless browser, no HTML parsing, no LLM. Fast and cheap.

Get your API keyRun the live demo

What one call returns

FieldWhat you use it for
titlethe page <title> — company/page name for cards and records
descriptionthe meta description — a ready one-line summary
canonicalthe canonical URL, so you dedupe redirects and variants
langdeclared content language (e.g. en-US)
faviconresolved favicon URL for logos and list rows
open_graphog:title, og:image, og:site_name, og:type for rich link previews
detected_techCMS, frameworks, analytics and payment providers found on the page
serverserver / hosting signal from the response headers

Example

curl "https://siteintel.duckdns.org/v1/analyze?url=https://stripe.com" \
  -H "X-RapidAPI-Key: YOUR_KEY"

{
  "title": "Stripe | Financial Infrastructure to Grow Your Revenue",
  "description": "Stripe is a financial services platform...",
  "canonical": "https://stripe.com/en-ca",
  "lang": "en-CA",
  "favicon": "https://stripe.com/favicon.ico",
  "open_graph": { "title": "Stripe", "image": "https://.../Stripe.jpg", "type": "website" },
  "detected_tech": ["Next.js"]
}

Why an API instead of parsing HTML yourself

Extracting metadata by hand means fetching each page, handling redirects and encodings, parsing the DOM, resolving relative favicon and Open Graph URLs, and keeping it working as sites change. SiteIntel does all of that server-side and hands back clean JSON, so a metadata lookup is one HTTP request from any language.

Looking for something more specific?

Start pulling metadata

50 requests/month free. Pro from $9.99/mo — RapidAPI handles auth and billing.

Get API key Run the live demo