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
  • Setup
  • Full workflow
  • Tips
Integrations

n8n

Was this page helpful?
Previous

API Keys

Next
Built with

Setup

  1. Add an HTTP Request node
  2. Configure:
    • Method: GET
    • URL: https://api.casestudies.dev/v1/enrich/={{ $json.domain }}
    • Authentication: Header Auth
    • Header Name: X-API-Key
    • Header Value: Your API key
  3. Connect to your CRM node to update the contact

Full workflow

Trigger (CRM webhook / schedule)
→ HTTP Request (enrich)
→ IF (found == true)
→ Update CRM contact
→ ELSE
→ Skip

Tips

  • n8n can be self-hosted so your data never leaves your infrastructure
  • Use the IF node to handle leads with no enrichment data
  • Add error handling for rate limits (429 responses)