One API call turns any URL into structured website intelligence: page metadata, favicon, detected tech stack, social profiles, public contact emails, and on-demand screenshots. Fast, no LLM in the loop, predictable latency.
Live demo: https://siteintel.duckdns.org · Get a key: RapidAPI →
| Method | Path | Returns |
|---|---|---|
GET |
/v1/analyze?url= |
JSON: title, description, canonical, lang, favicon, open_graph, detected_tech[], social_links[], emails[], server |
GET |
/v1/screenshot?url=&width=&full= |
PNG screenshot (headless Chromium) |
GET |
/health |
liveness |
One endpoint replaces stitching together a link-preview API + a tech-detection API + a screenshot API. Built for: link previews, CRM/sales enrichment, no-code automations, monitoring dashboards, and due-diligence tooling.
curl "https://siteintel.p.rapidapi.com/v1/analyze?url=https://stripe.com" \
-H "X-RapidAPI-Key: YOUR_KEY" \
-H "X-RapidAPI-Host: siteintel.p.rapidapi.com"{
"title": "Stripe | Financial Infrastructure for the Internet",
"detected_tech": ["Next.js"],
"favicon": "https://stripe.com/favicon.ico",
"social_links": ["https://github.com/stripe", "https://twitter.com/stripe"],
"server": "nginx"
}Node and shell examples in examples/. Full contract in openapi.yaml.
| Plan | Price/mo | Quota |
|---|---|---|
| Basic | Free | 50 req — for trying it |
| Pro | $9.99 | 10,000 req |
| Ultra | $24.99 | 50,000 req |
| Mega | $79.99 | 500,000 req |
MIT — see LICENSE. The hosted API is operated by SiteIntel; this repo is the client SDK, examples, and OpenAPI spec.