← Twitter

New List Followed from Twitter API

Pipedream makes it easy to connect APIs for Twitter and 1000+ other apps remarkably fast.

Trigger workflow on
New List Followed from the Twitter API
Next, do this
Connect to 1000+ APIs using code and no-code building blocks
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

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

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Trigger a workflow on New List Followed with Twitter API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the New List Followed trigger
    1. Connect your Twitter account
    2. Configure Polling interval
  2. Add steps to connect to 1000+ APIs using code and no-code building blocks
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Send Message with Discord Webhook API on New List Followed from Twitter API
Twitter + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on New List Followed from Twitter API
Twitter + Google Sheets
 
Try it
Get Film with SWAPI - Star Wars API on New List Followed from Twitter API
Twitter + SWAPI - Star Wars
 
Try it
Create Multiple Records with Airtable API on New List Followed from Twitter API
Twitter + Airtable
 
Try it
Chat with OpenAI (ChatGPT) API on New List Followed from Twitter API
Twitter + OpenAI (ChatGPT)
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is 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.

New List Followed on Twitter
Description:Emit new event when the authenticated user follows a List
Version:0.0.4
Key:twitter-new-list-followed

Code

import common from "../common/followed.mjs";

export default {
  ...common,
  key: "twitter-new-list-followed",
  name: "New List Followed",
  description: "Emit new event when the authenticated user follows a List",
  version: "0.0.4",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    async getFollowed() {
      return this.twitter.getLists({});
    },
    generateMeta(list) {
      return {
        id: list.id,
        summary: list.name,
        ts: Date.now(),
      };
    },
  },
};

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
TwittertwitterappThis component uses the Twitter app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Polling intervaltimer$.interface.timer

Pipedream will poll the Twitter API on this schedule

Authentication

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

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

About Twitter

From breaking news and entertainment to sports and politics, get the full story with all the live commentary.

More Ways to Use Twitter

Triggers

My Liked Tweets from the Twitter API

Emit new Tweets you like on Twitter

 
Try it
My Tweets from the Twitter API

Emit new Tweets you post to Twitter

 
Try it
New Follower of Me from the Twitter API

Emit new event when a user follows you on Twitter

 
Try it
New Follower of User from the Twitter API

Emit new event when a specific user gains a follower

 
Try it
New Trends by Geo from the Twitter API

Emit new event when a new topic is trending on Twitter in a specific geographic location

 
Try it

Actions

Simple Search with the Twitter API

Return Tweets that matches your search criteria. See the docs here

 
Try it
Advanced Search with the Twitter API

Return Tweets that matches your search criteria. See the docs here

 
Try it
Add User To List with the Twitter API

Add a member to a list. The authenticated user must own the list to be able to add members to it. See the docs here

 
Try it
Create Tweet with the Twitter API

Create a new tweet. See the docs here

 
Try it
Delete Tweet with the Twitter API

Remove a posted tweet. See the docs here

 
Try it