To screen signups without lifting a finger, send each new email to CapyScout as it comes in. It takes three steps.
1. Create an API key
Open Integrations and generate a key. One key works for both the REST API and the MCP server, so an AI assistant can call CapyScout with the same credentials your backend uses.
2. Send each new signup
curl -X POST https://app.capyscout.com/api/v1/enrich/email \
-H "Authorization: Bearer cs_live_your_key" \
-H "Content-Type: application/json" \
-d '{"email":"jane@acme.com","source":"signup","scenario":"signup_triage","addToWatchlist":false}'Fire this from your signup webhook. Flip addToWatchlist to true when you also want to start monitoring that company for buying signals going forward.
3. Decide what happens next
Add a workflow so strong signups reach your sales channel and weak ones are filtered out before they create noise. The full reference, including every field we return, lives in the API and MCP docs.