Instabot

Instabot is a chatbot platform that increases conversion where you are already interacting with your users - via your website, mobile app or email. You can build, integrate, and launch Instabot into your campaigns quickly.

Go to site
Explore
/
Apps
/
Instabot

Instabot API Integrations

Build and run workflows using the Instabot API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Instabot API, you can build bots that can automate tasks on Instagram, such as liking and following users, commenting on posts, and more.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    instabot_chatbot_platform: {
      type: "app",
      app: "instabot_chatbot_platform",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.instabot.io/v1/users`,
      headers: {
        "X-Instabot-Api-Key": `${this.instabot_chatbot_platform.$auth.api_key}`,
        "Authorization": `X-Instabot-Master-Api-Key ${this.instabot_chatbot_platform.$auth.master_api_key}`,
      },
    })
  },
})

Authentication

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

You can get your API Keys under Account Settings > General in your Instabot account.