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
  • 1. Get an API key
  • 2. Scan a domain
  • 3. Connect to your CRM
  • 4. Stream results in real time
Guides

Quick Start

Was this page helpful?
Previous

Use Cases

Next
Built with

1. Get an API key

Sign up at casestudies.dev and copy your API key from the dashboard.

2. Scan a domain

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

Returns the full tech stack for bestseller.com — every tool detected, grouped by category.

3. Connect to your CRM

Set up a workflow to auto-enrich new accounts as they land:

  1. Trigger: new account created in Salesforce / HubSpot
  2. Action: call GET /v1/enrich/{domain} with the account’s website domain
  3. Map by_category fields to your CRM custom fields

See the Integrations section for step-by-step guides for Zapier, Make, Clay, HubSpot, and Salesforce.

4. Stream results in real time

For a live scanning experience (results appear phase by phase):

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

Each event arrives as tools are detected. Useful for dashboards and live demos.