← Pipefy + Pushshift Reddit Search integrations

Search Reddit Posts with Pushshift Reddit Search API on Card Field Updated (Instant) from Pipefy API

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

Trigger workflow on
Card Field Updated (Instant) from the Pipefy 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 800,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 Pipefy 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 Card Field Updated (Instant) trigger
    1. Connect your Pipefy account
    2. Configure Pipe ID
  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:Emits an event each time a card field is updated in a Pipe.
Version:0.0.3
Key:pipefy-card-field-updated

Pipefy Overview

Pipefy is a platform that empowers users to streamline complex processes and workflows without the need for technical skills. With the Pipefy API, you can automate various aspects of your Pipefy environment, such as creating cards, updating fields, and managing pipelines programmatically. Use Pipedream to connect Pipefy with hundreds of other apps and orchestrate workflows that can save time, reduce errors, and enhance efficiency.

Trigger Code

import common from "../common-webhook.mjs";

export default {
  ...common,
  name: "Card Field Updated (Instant)",
  key: "pipefy-card-field-updated",
  description: "Emits an event each time a card field is updated in a Pipe.",
  version: "0.0.3",
  type: "source",
  methods: {
    ...common.methods,
    getActions() {
      return [
        "card.field_update",
      ];
    },
    getMeta(card, cardData) {
      return {
        body: {
          card,
          cardData,
        },
        id: `${card.id}${Date.now()}`,
        summary: `${card.title} ${cardData.field.label} updated`,
      };
    },
  },
};

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
PipefypipefyappThis component uses the Pipefy app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Pipe IDpipeIdinteger

ID of the Pipe, found in the URL when viewing the Pipe.

N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.

Trigger Authentication

Pipefy uses API keys for authentication. When you connect your Pipefy account, Pipedream securely stores the keys so you can easily authenticate to Pipefy APIs in both code and no-code steps.

To authorize requests to the Pipefy API, you'll need to generate a Personal access token. In order to create Pipefy triggers in Pipedream, you will need to be a Pipefy administrator.

About Pipefy

Process Management, Workflow Management Software

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 + Pipefy

Create Card with Pipefy API on New Comments By Search from Pushshift Reddit Search API
Pushshift Reddit Search + Pipefy
 
Try it
Create Pipe with Pipefy API on New Comments By Search from Pushshift Reddit Search API
Pushshift Reddit Search + Pipefy
 
Try it
Create Table Record with Pipefy API on New Comments By Search from Pushshift Reddit Search API
Pushshift Reddit Search + Pipefy
 
Try it
Delete Card with Pipefy API on New Comments By Search from Pushshift Reddit Search API
Pushshift Reddit Search + Pipefy
 
Try it
Get All Cards with Pipefy API on New Comments By Search from Pushshift Reddit Search API
Pushshift Reddit Search + Pipefy
 
Try it
Card Created (Instant) from the Pipefy API

Emits an event for each new card created in a Pipe.

 
Try it
Card Done (Instant) from the Pipefy API

Emits an event each time a card is moved to Done a Pipe.

 
Try it
Card Expired from the Pipefy API

Emits an event each time a card becomes expired in a Pipe.

 
Try it
Card Field Updated (Instant) from the Pipefy API

Emits an event each time a card field is updated in a Pipe.

 
Try it
Card Late from the Pipefy API

Emits an event each time a card becomes late in a Pipe.

 
Try it
Create Card with the Pipefy API

Create a new Card in a Pipe. See the docs here

 
Try it
Create Pipe with the Pipefy API

Creates a pipe. See the docs here

 
Try it
Create Table Record with the Pipefy API

Creates a new table record. See the docs here

 
Try it
Delete Card with the Pipefy API

Deletes a card. See the docs here

 
Try it
Get All Cards with the Pipefy API

Fetches all cards in a pipe. See the docs here

 
Try it

Explore Other Apps

1
-
24
of
2,000+
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 (REST API)
Salesforce (REST API)
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 Developer App
Shopify Developer App
Shopify is a user-friendly e-commerce platform that helps small businesses build an online store and sell online through one streamlined dashboard.
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.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
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.