Enrich

GET /v1/enrich/{domain}

The core endpoint. Pass a company’s domain and get back every case study they appear in as a customer.

Example

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

Response

1{
2 "domain": "bamboohr.com",
3 "found": true,
4 "company": {
5 "name": "BambooHR",
6 "domain": "bamboohr.com",
7 "industry": "hr-tech",
8 "logo_url": "https://img.logo.dev/bamboohr.com?..."
9 },
10 "featured_in": {
11 "total": 2,
12 "vendors": [
13 {
14 "vendor": { "name": "Remote.com", "domain": "remote.com", "logo_url": "..." },
15 "case_studies": [
16 {
17 "title": "BambooHR global hiring integration",
18 "summary": "...",
19 "problem": "...",
20 "solution": "...",
21 "outcomes": "90+ countries supported",
22 "source_url": "https://remote.com/case-studies/bamboohr"
23 }
24 ]
25 }
26 ]
27 },
28 "published_case_studies": null
29}

Fields

FieldDescription
featured_in.vendorsCompanies that mention this lead in their case studies
featured_in.vendors[].case_studiesWhat the lead bought, why, and what outcomes
published_case_studiesOnly returned if the lead is also a vendor with their own case studies

How matching works

  1. We check our cs_client_domains lookup table (3,000+ mappings)
  2. We also search featured_client_domain directly
  3. Both name and domain matching are used for maximum coverage