← Dropbox + Pushshift Reddit Search integrations

Search Reddit Posts with Pushshift Reddit Search API on New Folder from Dropbox API

Pipedream makes it easy to connect APIs for Pushshift Reddit Search, Dropbox and 2,400+ other apps remarkably fast.

Trigger workflow on
New Folder from the Dropbox API
Next, do this
Search Reddit Posts with the Pushshift Reddit Search API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Dropbox trigger and Pushshift Reddit Search action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Folder trigger
    1. Connect your Dropbox account
    2. Select a Path
    3. Configure Recursive
    4. Configure dropboxApphook
  3. Configure the Search Reddit Posts action
    1. Connect your Pushshift Reddit Search account
    2. Optional- Configure IDs
    3. Configure Q
    4. Optional- Configure Q:Not
    5. Optional- Configure Title
    6. Optional- Configure Title:Not
    7. Optional- Configure Selftext
    8. Optional- Configure Selftext:Not
    9. Optional- Configure Size
    10. Optional- Configure Fields
    11. Optional- Select a Sort
    12. Optional- Select a Sort Type
    13. Optional- Select a Aggs
    14. Optional- Configure Author
    15. Optional- Configure Subreddit
    16. Optional- Configure After
    17. Optional- Configure Before
    18. Optional- Configure Score
    19. Optional- Configure Number of Comments
    20. Optional- Configure Over 18
    21. Optional- Configure Is Video
    22. Optional- Configure Locked
    23. Optional- Configure Stickied
    24. Optional- Configure Spoiler
    25. Optional- Configure Content Mode
    26. Optional- Select a Frequency
    27. Optional- Configure Metadata
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a new folder is created. Make sure the number of files/folders in the watched folder does not exceed 4000.
Version:0.0.17
Key:dropbox-new-folder

Dropbox Overview

The Dropbox API on Pipedream enables you to automate file and folder operations, streamlining workflows that involve storing, syncing, and sharing content. With this API, you can programmatically manage files, set up event-driven triggers based on changes within Dropbox, and leverage Pipedream's capabilities to connect with hundreds of other apps for extended automation scenarios. It's ideal for building custom file management solutions, archiving systems, or collaborative content workflows without writing extensive code.

Trigger Code

import common from "../common/common.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  ...common,
  dedupe: "unique",
  type: "source",
  key: "dropbox-new-folder",
  name: "New Folder",
  version: "0.0.17",
  description: "Emit new event when a new folder is created. Make sure the number of files/folders in the watched folder does not exceed 4000.",
  hooks: {
    async activate() {
      await this.getHistoricalEvents([
        "folder",
      ]);
      const state = await this.dropbox.initState(this);
      this._setDropboxState(state);
    },
  },
  async run() {
    const state = this._getDropboxState();
    const {
      ret: updates, state: newState,
    } = await this.dropbox.getUpdates(this, state);
    this._setDropboxState(newState);
    for (const update of updates) {
      if (update[".tag"] !== "folder") {
        continue;
      }
      this.$emit(update, this.getMeta(update.id, update.path_display || update.id));
    }
  },
  sampleEmit,
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
DropboxdropboxappThis component uses the Dropbox app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
PathpathstringSelect a value from the drop down menu.
Recursiverecursiveboolean

Also watch sub-directories and their contents.

dropboxApphook$.interface.apphook

Trigger Authentication

Dropbox uses OAuth authentication. When you connect your Dropbox account, Pipedream will open a popup window where you can sign into Dropbox and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Dropbox API.

Pipedream requests the following authorization scopes when you connect your account:

About Dropbox

Dropbox gives you secure access to all your files. Collaborate with friends, family, and coworkers from any device.

Action

Description:Search Reddit posts using the Pushshift.io API. [See the docs here](https://github.com/pushshift/api)
Version:0.1.2
Key:pushshift_reddit_search-search-reddit-posts

Pushshift Reddit Search Overview

Using Pushshift's Reddit Search API, you can build a variety of apps to explore
popular content from Reddit. Here are a few examples of what you can create
with the API:

  • Create filtered searching of Reddit content. With the Pushshift API, you can
    filter Reddit content by string matches, subreddit, user ID, and more.
  • Build a Reddit-based article summarizer. Use the API to identify trending
    topics and articles posted to Reddit and summarize them for easy reading.
  • Create subreddit recommendations. Use the API to identify posts related to a
    certain topic and make personalized recommendations of subreddits associated
    with that topic.
  • Develop a sentiment analysis tool. The API allows you to identify sentiment
    in Reddit posts, providing a useful tool for understanding people’s opinions
    on topics.
  • Create a subreddit crawler. With the API, you can crawl through subreddits to
    identify posts that meet certain criteria - Allowing you to find the latest
    news and hot topics in no time.
  • Develop an app for monitoring. Use the API to track keyword mentions and
    subreddit activity over time to see how topics and conversations are trending
    on Reddit.
  • Build an analytics dashboard. Use the API to aggregate Reddit data and build
    a dashboard to visualize trends in popular topics and conversation over time.

Action Code

import pushshift from "../../pushshift_reddit_search.app.mjs";
import utils from "../../common/utils.mjs";

export default {
  key: "pushshift_reddit_search-search-reddit-posts",
  name: "Search Reddit Posts",
  description: "Search Reddit posts using the Pushshift.io API. [See the docs here](https://github.com/pushshift/api)",
  version: "0.1.2",
  type: "action",
  props: {
    pushshift,
    ids: {
      propDefinition: [
        pushshift,
        "ids",
      ],
    },
    q: {
      propDefinition: [
        pushshift,
        "q",
      ],
    },
    qNot: {
      propDefinition: [
        pushshift,
        "qNot",
      ],
    },
    title: {
      propDefinition: [
        pushshift,
        "title",
      ],
    },
    titleNot: {
      propDefinition: [
        pushshift,
        "titleNot",
      ],
    },
    selftext: {
      propDefinition: [
        pushshift,
        "selftext",
      ],
    },
    selftextNot: {
      propDefinition: [
        pushshift,
        "selftextNot",
      ],
    },
    size: {
      propDefinition: [
        pushshift,
        "size",
      ],
    },
    fields: {
      propDefinition: [
        pushshift,
        "fields",
      ],
    },
    sort: {
      propDefinition: [
        pushshift,
        "sort",
      ],
    },
    sortType: {
      propDefinition: [
        pushshift,
        "sortType",
      ],
    },
    aggs: {
      propDefinition: [
        pushshift,
        "aggs",
      ],
    },
    author: {
      propDefinition: [
        pushshift,
        "author",
      ],
    },
    subreddit: {
      propDefinition: [
        pushshift,
        "subreddit",
      ],
    },
    after: {
      propDefinition: [
        pushshift,
        "after",
      ],
    },
    before: {
      propDefinition: [
        pushshift,
        "before",
      ],
    },
    score: {
      propDefinition: [
        pushshift,
        "score",
      ],
    },
    numComments: {
      propDefinition: [
        pushshift,
        "numComments",
      ],
    },
    over18: {
      propDefinition: [
        pushshift,
        "over18",
      ],
    },
    isVideo: {
      propDefinition: [
        pushshift,
        "isVideo",
      ],
    },
    locked: {
      propDefinition: [
        pushshift,
        "locked",
      ],
    },
    stickied: {
      propDefinition: [
        pushshift,
        "stickied",
      ],
    },
    spoiler: {
      propDefinition: [
        pushshift,
        "spoiler",
      ],
    },
    contentMode: {
      propDefinition: [
        pushshift,
        "contentMode",
      ],
    },
    frequency: {
      propDefinition: [
        pushshift,
        "frequency",
      ],
    },
    metadata: {
      propDefinition: [
        pushshift,
        "metadata",
      ],
    },
  },
  async run({ $ }) {
    const params = utils.omitEmptyStringValues({
      "ids": this.ids,
      "q": this.q,
      "title": this.title,
      "selftext": this.selftext,
      "size": this.size,
      "fields": this.fields,
      "sort": this.sort,
      "sort_type": this.sortType,
      "aggs": this.aggs,
      "author": this.author,
      "subreddit": this.subreddit,
      "after": this.after,
      "before": this.before,
      "score": this.score,
      "num_comments": this.numComments,
      "over_18": this.over18,
      "is_video": this.isVideo,
      "locked": this.locked,
      "stickied": this.stickied,
      "spoiler": this.spoiler,
      "content_mode": this.contentMode,
      "frequency": this.frequency,
      "metadata": this.metadata,
      "q:not": this.qNot,
      "title:not": this.titleNot,
      "selftext:not": this.selftextNot,
    });

    const posts = await this.pushshift.searchPosts({
      params,
      $,
    });

    $.export("$summary", `Found ${posts.length} posts(s)`);

    return posts;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
Pushshift Reddit SearchpushshiftappThis component uses the Pushshift Reddit Search app.
IDsidsstring

Get specific submissions via their ids. Enter as comma-delimited base36 ids.

Qqstring

Search term. Will search ALL possible fields

Q:NotqNotstring

Exclude search term. Will exclude these terms

Titletitlestring

Searches the title field only

Title:NottitleNotstring

Exclude search term from title. Will exclude these terms

Selftextselftextstring

Searches the selftext field only

Selftext:NotselftextNotstring

Exclude search term from selftext. Will exclude these terms

Sizesizeinteger

Number of results to return (Integer <= 500)

Fieldsfieldsstring

Only return specific fields (comma delimited)

SortsortstringSelect a value from the drop down menu:ascdesc
Sort TypesortTypestringSelect a value from the drop down menu:scorenum_commentscreated_utc
AggsaggsstringSelect a value from the drop down menu:authorlink_idcreated_utcsubreddit
Authorauthorstring

Restrict to a specific author

Subredditsubredditstring

Restrict to a specific subreddit

Afterafterstring

Return results after this date. Provide an epoch value or Integer + "s,m,h,d" (i.e. 30d for 30 days)

Beforebeforestring

Return results before this date. Provide epoch value or Integer + "s,m,h,d" (i.e. 30d for 30 days)

Scorescorestring

Restrict results based on score. Provide integer or > x or < x (i.e. score=>100 or score=<25)

Number of CommentsnumCommentsstring

Restrict results based on number of comments. Integer or > x or < x (i.e. num_comments=>100)

Over 18over18boolean

Restrict to nsfw or sfw content

Is VideoisVideoboolean

Restrict to video content

Lockedlockedboolean

Return locked or unlocked threads only

Stickiedstickiedboolean

Return stickied or unstickied content only

Spoilerspoilerboolean

Exclude or include spoilers only

Content ModecontentModeboolean

Exclude or include content mode submissions

FrequencyfrequencystringSelect a value from the drop down menu:secondminutehourday
Metadatametadataboolean

Include metadata search information

Action Authentication

The Pushshift Reddit Search API does not require authentication.

The pushshift.io Reddit API was designed and created by the /r/datasets mod team to help provide enhanced functionality and search capabilities for searching Reddit comments and submissions. The project lead, /u/stuck_in_the_matrix, is the maintainer of the Reddit comment and submissions archives located at https://files.pushshift.io. This RESTful API gives full functionality for searching Reddit data and also includes the capability of creating powerful data aggregations. With this API, you can quickly find the data that you are interested in and find fascinating correlations.

More Ways to Connect Pushshift Reddit Search + Dropbox

Search Reddit Comments with Pushshift Reddit Search API on New or Modified File or Folder from Dropbox API
Dropbox + Pushshift Reddit Search
 
Try it
Search Reddit Comments with Pushshift Reddit Search API on New File from Dropbox API
Dropbox + Pushshift Reddit Search
 
Try it
Search Reddit Comments with Pushshift Reddit Search API on New Folder from Dropbox API
Dropbox + Pushshift Reddit Search
 
Try it
Search Reddit Posts with Pushshift Reddit Search API on New or Modified File or Folder from Dropbox API
Dropbox + Pushshift Reddit Search
 
Try it
Search Reddit Posts with Pushshift Reddit Search API on New File from Dropbox API
Dropbox + Pushshift Reddit Search
 
Try it
New File from the Dropbox API

Emit new event when a new file is added to your account or a specific folder. Make sure the number of files/folders in the watched folder does not exceed 4000.

 
Try it
New Folder from the Dropbox API

Emit new event when a new folder is created. Make sure the number of files/folders in the watched folder does not exceed 4000.

 
Try it
New or Modified File or Folder from the Dropbox API

Emit new event when a file or folder is added or modified. Make sure the number of files/folders in the watched folder does not exceed 4000.

 
Try it
New Comments By Search from the Pushshift Reddit Search API

Emit new event when a search of Reddit comments using the Pushshift.io API returns new results.

 
Try it
New Posts By Search from the Pushshift Reddit Search API

Emit new event when a search of Reddit posts using the Pushshift.io API returns new results.

 
Try it
Create a Text File with the Dropbox API

Creates a brand new text file from plain text content you specify. See the documentation

 
Try it
Create folder with the Dropbox API

Create a Folder. See the documentation

 
Try it
Create or Append to a Text File with the Dropbox API

Adds a new line to an existing text file, or creates a file if it doesn't exist. See the documentation

 
Try it
Create/Update a Share Link with the Dropbox API

Creates or updates a public share link to the file or folder (It allows you to share the file or folder with anyone). See the documentation

 
Try it
Delete a File/Folder with the Dropbox API

Permanently removes a file/folder from the server. See documentation

 
Try it

Explore Other Apps

1
-
24
of
2,400+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Premium
Salesforce
Salesforce
Web services API for interacting with Salesforce
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.