← Twitch

New Streams By Streamer from Twitch API

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

Trigger workflow on
New Streams By Streamer from the Twitch 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 Streams By Streamer with Twitch API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the New Streams By Streamer trigger
    1. Connect your Twitch account
    2. Configure timer
    3. Configure Streamer Login Names
  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 Streams By Streamer from Twitch API
Twitch + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on Streams By Streamer from Twitch API
Twitch + Google Sheets
 
Try it
Get Film with SWAPI API on Streams By Streamer from Twitch API
Twitch + SWAPI - Star Wars
 
Try it
Create Multiple Records with Airtable API on Streams By Streamer from Twitch API
Twitch + Airtable
 
Try it
Chat with OpenAI (ChatGPT) API on New Streams By Streamer from Twitch API
Twitch + 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 Streams By Streamer on Twitch
Description:Emit new event when a live stream starts from the streamers you specify.
Version:0.1.1
Key:twitch-streams-by-streamer

Code

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

export default {
  ...common,
  name: "New Streams By Streamer",
  key: "twitch-streams-by-streamer",
  description: "Emit new event when a live stream starts from the streamers you specify.",
  version: "0.1.1",
  type: "source",
  props: {
    ...common.props,
    streamerLoginNames: {
      propDefinition: [
        common.props.twitch,
        "streamerLoginNames",
      ],
    },
  },
  methods: {
    ...common.methods,
    getMeta(item) {
      const {
        id,
        started_at: startedAt,
        title: summary,
      } = item;
      const ts = Date.parse(startedAt);
      return {
        id,
        summary,
        ts,
      };
    },
  },
  async run() {
    // get and emit streams for the specified streamers
    const streams = await this.paginate(this.twitch.getStreams.bind(this), {
      user_login: this.streamerLoginNames,
    });
    for await (const stream of streams) {
      this.$emit(stream, this.getMeta(stream));
    }
  },
};

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
TwitchtwitchappThis component uses the Twitch app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer
Streamer Login NamesstreamerLoginNamesstring[]

Enter the login names of the streamers whose streams you want to watch.

Authentication

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

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

analytics:read:extensionsanalytics:read:gamesbits:readchannel:read:subscriptionsclips:edituser:edituser:edit:broadcastuser:read:broadcastuser:read:emailuser:read:blocked_usersuser:manage:blocked_userschannel:read:editorschannel:manage:videosuser:read:subscriptions

About Twitch

Live streaming platform for gamers

More Ways to Use Twitch

Triggers

New Clip By Streamer from the Twitch API

Emit new event when there is a new clip for the specified streamer.

 
Try it
New Clips from the Twitch API

Emit new event when there is a new clip for the specified game.

 
Try it
New Followed Streams from the Twitch API

Emit new event when a followed stream is live.

 
Try it
New Follower (Instant) from the Twitch API

Emit new event when a new user follows your channel.

 
Try it
New Streams By Game from the Twitch API

Emit new event when a live stream starts from any stream matching the game and language specified.

 
Try it

Actions

Block User with the Twitch API

Blocks a user; that is, adds a specified target user to your blocks list

 
Try it
Check Channel Subscription with the Twitch API

Checks if you are subscribed to the specified user's channel

 
Try it
Delete Video with the Twitch API

Deletes a specified video

 
Try it
Get Channel Editors with the Twitch API

Gets a list of users who are editors for your channel

 
Try it
Get Channel Information with the Twitch API

Retrieves information about a particular broadcaster's channel

 
Try it