Reddit Keyword Alert via SMS

This Val monitors Reddit for posts with keywords and sends you SMS notifications.


Example: IMG_3066.jpg


Prerequisites:

  • Twilio account (for SMS notifications)
  • SerpApi key (for searching Reddit)

Customize all of these according to your preferences:

  const apiKey = Deno.env.get("SERP_API_KEY");
  const twilioSid = Deno.env.get("TWILIO_ACCOUNT_SID");
  const twilioToken = Deno.env.get("TWILIO_AUTH_TOKEN");
  const fromNumber = Deno.env.get("TWILIO_PHONE_NUMBER");
  const toNumber = Deno.env.get("YOUR_PHONE_NUMBER");
  const query = "\"node\" OR \"node.js\"";