← Twitch

Get Channel Teams with Twitch API

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

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Get Channel Teams with the Twitch API
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

Create a workflow to Get Channel Teams with the Twitch API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Get Channel Teams action
    1. Connect your Twitch account
    2. Configure Broadcaster Id
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Get Channel Teams with Twitch API on New Requests from HTTP / Webhook API
HTTP / Webhook + Twitch
 
Try it
Get Channel Teams with Twitch API on New Item in Feed from RSS API
RSS + Twitch
 
Try it
Get Channel Teams with Twitch API on New Message from Discord API
Discord + Twitch
 
Try it
Get Channel Teams with Twitch API on New Message In Channels from Slack API
Slack + Twitch
 
Try it
Get Channel Teams with Twitch API on New Message in Channel from Discord Bot API
Discord Bot + Twitch
 
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.

Get Channel Teams on Twitch
Description:Gets a list of teams to which a specified channel belongs
Version:0.1.1
Key:twitch-get-channel-teams

Code

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

export default {
  ...common,
  name: "Get Channel Teams",
  key: "twitch-get-channel-teams",
  description: "Gets a list of teams to which a specified channel belongs",
  version: "0.1.1",
  type: "action",
  props: {
    ...common.props,
    broadcaster: {
      propDefinition: [
        common.props.twitch,
        "broadcaster",
      ],
      description: "The broadcaster ID of the channel to get teams for",
    },
  },
  async run() {
    const params = {
      broadcaster_id: this.broadcaster,
    };
    return (await this.twitch.getChannelTeams(params)).data.data;
  },
};

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.
Broadcaster Idbroadcasterstring

The broadcaster ID of the channel to get teams for

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