For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Guides
    • Introduction
    • Quick Start
    • Use Cases
    • MCP Server
  • API
    • Enrich Endpoint
  • Integrations
    • Clay
    • Zapier
    • Make
    • HubSpot
    • Salesforce
    • n8n
  • Platform
    • API Keys
    • Rate Limits
    • Pricing
  • Support
    • Support
  • API Reference
    • GETGet platform stats
    • GETSearch case studies
    • POSTSemantic search
    • POSTBatch semantic search
    • GETGet case study
    • GETList companies
    • GETGet company
    • GETCompany analysis
    • GETCompany timeline
    • POSTCompare vendors
    • POSTRegister for an API key
Logocasestudies.dev
On this page
  • CRM enrichment
  • ICP filtering
  • Competitive intelligence
  • AI agents and copilots
  • Real-time streaming
Guides

Use Cases

Was this page helpful?
Previous

MCP Server

Next
Built with

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.