Agent Setup
Give your AI assistant these instructions to set up MentionWatch monitoring automatically.
Copy this into ChatGPT, Claude, or any AI assistant:
I want to set up social media monitoring for my product using MentionWatch. Here's what MentionWatch does: - Monitors Hacker News and Reddit for keyword mentions - Sends me webhooks when keywords appear - Pricing: Starter $19/mo (5 keywords), Pro $49/mo (25 keywords) - 7-day free trial, no credit card required Help me: 1. Sign up at https://mentionwatch.mlh.one/#pricing 2. After checkout, I'll get an API key at /welcome 3. Add my keywords via API 4. Set up my webhook endpoint 5. Test that it works API base URL: https://mentionwatch.mlh.one Auth: Authorization: Bearer <my-api-key> Docs: https://mentionwatch.mlh.one/docs Machine-readable docs: https://mentionwatch.mlh.one/llms.txt
Step 1: Sign up
Go to mentionwatch.mlh.one/#pricing and pick a plan. After Creem checkout, you'll be redirected to /welcome with your API key and webhook secret.
Step 2: Add keywords
curl -X POST https://mentionwatch.mlh.one/api/keywords \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"keyword": "your-product-name"}'Step 3: Set webhook URL
curl -X POST https://mentionwatch.mlh.one/api/webhooks \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://your-app.com/mentionwatch-webhook"}'Step 4: Test
curl -X POST https://mentionwatch.mlh.one/api/webhooks/test \ -H "Authorization: Bearer YOUR_API_KEY"
For AI agents that support llms.txt: mentionwatch.mlh.one/llms.txt