Quick Start

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.