The best Reddit leads already explain what they need. Look for posts asking for a recommendation, an alternative, or help with a problem your product solves.
This Reddit lead generation workflow finds those posts and sends them to you for review. It does not automate comments or DMs.
SocialListeningAPI searches public posts on Reddit for the phrases you choose and returns normalized records with source URLs.
Step 1: Create your API key
Create a SocialListeningAPI account and claim the 100 free credits.
Copy your key and keep it in a server-side environment variable. The
authentication guide covers the x-api-key header and common errors.
Step 2: Pick recommendation and problem phrases
Broad category words return too much noise. Start with five phrases tied to an action:
recommend a customer feedback toolalternative to competitor namebest API for public Reddit postshow to find product complaintsneed help tracking brand mentions
Use one phrase per request. Do not combine your whole keyword list into one long query.
Step 3: Run the Reddit lead generation search
Run the Reddit post search endpoint:
curl --get 'https://api.sociallisteningapi.com/api/v1/reddit/search-posts' \
--data-urlencode 'query=recommend a customer feedback tool' \
--header 'x-api-key: YOUR_API_KEY'
Each successful request costs 1 credit. Results are newest first and cover public posts, not Reddit comments. The Reddit search API page explains current fields and limits.
A shortened response uses this shape:
{
"data": {
"items": [
{
"url": "https://www.reddit.com/r/example/comments/post-id/example/",
"content": { "title": "Post title", "text": "Post text" },
"author": { "display_name": "username" },
"ext": { "subreddit": "example" }
}
]
},
"credits_used": 1
}
Step 4: Filter and store useful posts
Save the post URL, subreddit, author, text, and date in your database or spreadsheet. Storage and classification happen outside SocialListeningAPI.
Keep a post when the writer has a clear problem, your product can help, and the discussion is still active. Store handled URLs so the next run can skip duplicates.
Step 5: Read the rules before replying
Open the full thread and read the subreddit rules. Some communities ban promotion, links, or vendor replies. Answer the question first, disclose your connection, and only mention your product when it adds useful detail.
Conclusion
If you want fresh threads each weekday, schedule five searches with cron, n8n, Make, or Zapier. That uses up to 25 credits per week.
The useful output is a small queue you can read properly. Skip any thread where you cannot add a helpful, honest answer.
Continue with Find Reddit Comparison Questions.




