Use Cases

CRM enrichment

Auto-detect the tech stack for every new account as it lands in your CRM. One API call — no manual research.

$curl https://api.casestudies.dev/v1/enrich/bestseller.com \
> -H "X-API-Key: YOUR_KEY"

Pipe the by_category field into custom CRM fields so reps see tools before they call.

ICP filtering

Build lists of companies that use a specific combination of tools. Find every company running Salesforce + AWS in your target market.

$# Enrich a list of domains and filter by tool
$curl https://api.casestudies.dev/v1/enrich/revolut.com \
> -H "X-API-Key: YOUR_KEY" | jq '.by_category.CRM'

Use Clay, Zapier, or Make to run this across thousands of domains and filter to exact-match ICP.

Competitive intelligence

Compare tech stacks across your target accounts to spot tooling gaps and consolidation opportunities.

$# Scan competitor domains
$curl https://api.casestudies.dev/v1/enrich/monzo.com \
> -H "X-API-Key: YOUR_KEY"
$
$curl https://api.casestudies.dev/v1/enrich/revolut.com \
> -H "X-API-Key: YOUR_KEY"

Use the Track Competitors dashboard to see a side-by-side comparison table.

AI agents and copilots

Give your sales AI real account intelligence. Agents can look up any company’s tech stack mid-conversation via the MCP server.

$# Via MCP tool (Claude, Cursor, etc.)
$get_company_analysis(domain="stripe.com")

Returns structured JSON your agent can use to personalise outreach, prep for calls, or route leads.

Real-time streaming

For dashboards and live demos, stream results phase by phase as they are detected:

$curl https://api.casestudies.dev/v1/enrich-stream/shopify.com \
> -H "X-API-Key: YOUR_KEY" \
> -H "Accept: text/event-stream"

Results arrive progressively — fast signals (email, identity) appear within 2s, deep infrastructure signals within 10s.