Reddit Purchase Intent Leads
Pricing
from $3.20 / 1,000 actionable insights
Reddit Purchase Intent Leads
Turn Reddit post or comment records into ranked, evidence-backed Reddit demand signals.
Reddit Purchase Intent Leads
Pricing
from $3.20 / 1,000 actionable insights
Turn Reddit post or comment records into ranked, evidence-backed Reddit demand signals.
You can access the Reddit Purchase Intent Leads programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youβll need an Apify account and your API token, found in API & Integrations in Apify Console.
1from apify_client import ApifyClient2
3# Initialize the ApifyClient with your Apify API token4# Replace '<YOUR_API_TOKEN>' with your token.5client = ApifyClient("<YOUR_API_TOKEN>")6
7# Prepare the Actor input8run_input = {9 "records": [{10 "id": "rd-demo-001",11 "subreddit": "smallbusiness",12 "title": "Looking for an affordable review-monitoring tool",13 "body": "Need a simple alternative to enterprise tools for five locations.",14 "score": 184,15 "upvoteRatio": 0.96,16 "numComments": 73,17 "observedAt": "2026-08-02T10:00:00Z",18 "productWorkflow": "reddit-purchase-intent-leads",19 }],20 "previousRecords": [{21 "id": "rd-demo-001",22 "subreddit": "smallbusiness",23 "title": "Review monitoring options?",24 "body": "Comparing tools.",25 "score": 24,26 "upvoteRatio": 0.82,27 "numComments": 9,28 "observedAt": "2026-08-01T10:00:00Z",29 "productWorkflow": "reddit-purchase-intent-leads",30 }],31}32
33# Run the Actor and wait for it to finish34run = client.actor("night111/reddit-purchase-intent-leads").call(run_input=run_input)35
36# Fetch and print Actor results from the run's dataset (if there are any)37print(f"πΎ Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")38for item in client.dataset(run.default_dataset_id).iterate_items():39 print(item)40
41# π Want to learn more π? Go to β https://docs.apify.com/api/client/python/docs/quick-startThe Apify API client for Python is the official library that allows you to use Reddit Purchase Intent Leads API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
$pip install apify-clientOther API clients include: