What do you want to automate

with wit.ai and Slack?

Prompt, edit and deploy AI agents that connect to wit.ai, Slack and 2,800+ other apps in seconds.

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
Add Utterance with wit.ai API on New Channel Created (Instant) from Slack v2 API
Slack + wit.ai
 
Try it
Create Entity with wit.ai API on New Channel Created (Instant) from Slack v2 API
Slack + wit.ai
 
Try it
Create Intent with wit.ai API on New Channel Created (Instant) from Slack v2 API
Slack + wit.ai
 
Try it
New Channel Created (Instant) from the Slack API

Emit new event when a new channel is created.

 
Try it
New Interaction Events (Instant) from the Slack API

Emit new events on new Slack interactivity events sourced from Block Kit interactive elements, Slash commands, or Shortcuts

 
Try it
New Keyword Mention (Instant) from the Slack API

Emit new event when a specific keyword is mentioned in a channel

 
Try it
New Message In Channels (Instant) from the Slack API

Emit new event when a new message is posted to one or more channels

 
Try it
New Reaction Added (Instant) from the Slack API

Emit new event when a member has added an emoji reaction to a message

 
Try it
Add Utterance with the wit.ai API

Add a sample utterance to train your app with an intent. See the documentation

 
Try it
Add Emoji Reaction with the Slack API

Add an emoji reaction to a message. See the documentation

 
Try it
Create Entity with the wit.ai API

Creates a new entity with the given attributes. See the documentation

 
Try it
Approve Workflow with the Slack API

Suspend the workflow until approved by a Slack message. See the documentation

 
Try it
Create Intent with the wit.ai API

Creates a new intent. See the documentation

 
Try it
Integrate the wit.ai API with the Slack API
Setup the wit.ai API trigger to run a workflow which integrates with the Slack API. Pipedream's integration platform allows you to integrate wit.ai and Slack remarkably fast. Free for developers.

Overview of wit.ai

Wit.ai API enables your apps to process natural language and understand human commands contextually. With it, you can build conversational interfaces, decipher intent from text or voice inputs, and train your model to improve recognition. Pipedream provides a seamless platform to trigger workflows using this API, allowing the automation of tasks based on language cues. It's perfect for crafting custom bots, enhancing customer service, or streamlining internal operations by interpreting human requests and taking action accordingly.

Connect wit.ai

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    wit_ai: {
      type: "app",
      app: "wit_ai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.wit.ai/message?v=20170307&q=hello`,
      headers: {
        Authorization: `Bearer ${this.wit_ai.$auth.app_token}`,
      },
    })
  },
})

Connect Slack

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    slack_v2: {
      type: "app",
      app: "slack_v2",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://slack.com/api/users.profile.get`,
      headers: {
        Authorization: `Bearer ${this.slack_v2.$auth.oauth_access_token}`,
      },
    })
  },
})

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