New User Enrichment Demo

Demo showing how to enrich new user signups with Clay and send notifications to Slack.

This val uses the Clay API/SDK proxy.

Files

  • slack.ts - Slack notification
  • test.ts - Demo test script to simulate new user sign up

Setup

  1. Set SLACK_WEBHOOK_URL environment variable
  2. Run test.ts to see the complete flow
  3. Check your Slack channel for the enriched user notification

Example

// On user signup const enrichedData = await clay({ email: "marc@scalar.com", source: "user_signup" }); // Send to your notification system (Slack, Discord, etc.) await sendToSlack(enrichedData);

Clay enrichment includes: name, company, LinkedIn, funding stage, employee count.