Docs · Intelligence

Page intelligence

Tech stack, contacts, logos, feeds, images.

POST /v1/intel/page

Multi-signal extraction from a single fetched page. Returns technology stack, social profile links, contact emails and phones, every logo and favicon, and any feeds the page advertises.

Parameters

Name Type Required Default Description
url string yes URL to analyze.

Request

curl -X POST https://api.datasonar.dev/v1/intel/page \
  -H "Authorization: Bearer osk_..." \
  -d '{"url": "https://anthropic.com"}'

Response

{
  "status": "success",
  "url": "https://anthropic.com",
  "tech_stack": ["AWS","Cloudflare"],
  "contacts": { "socials": {...}, "emails": [], "phones": [] },
  "logos": [...],
  "feeds": [],
  "images": {...}
}

Related