Make

Setup

  1. Create a new scenario
  2. Trigger: Your CRM module → “Watch new contacts”
  3. Action: HTTP → Make a request
  4. Configure:
    • URL: https://api.casestudies.dev/v1/enrich/{{domain}}
    • Method: GET
    • Headers: Add X-API-Key with your API key
  5. Action 2: JSON → Parse JSON (parse the response body)
  6. Action 3: Your CRM module → Update a contact (map fields below)

Available fields

Response pathWhat it containsExample
company.nameCompany name”BambooHR”
company.industryTheir industry”hr-tech”
company.logo_urlCompany logo URLURL
featured_in.totalNumber of vendor mentions2
featured_in.vendors[]Array of vendors they useArray
featured_in.vendors[].vendor.nameVendor name”Remote.com”
featured_in.vendors[].vendor.domainVendor domain”remote.com”
featured_in.vendors[].case_studies[].titleCase study title”BambooHR global hiring”
featured_in.vendors[].case_studies[].problemProblem facedText
featured_in.vendors[].case_studies[].solutionSolution appliedText
featured_in.vendors[].case_studies[].outcomesResults/metricsText
featured_in.vendors[].case_studies[].source_urlLink to originalURL

Tips

  • Use Make’s JSON parser to extract the featured_in.vendors array
  • Use an Iterator module to loop through vendors if you want separate rows
  • Set up error handling for domains with no results (found: false)
  • Add a filter to skip contacts without a domain