Voice Monkey

Voice Monkey is a free Skill that allows you to trigger Alexa Routines from external sources such as IFTTT. It also allows you to make dynamic and custom Text to Speech announcements over your Amazon Echo or other Alexa smart speaker.

Integrate the Voice Monkey API with the GitHub API

Setup the Voice Monkey API trigger to run a workflow which integrates with the GitHub API. Pipedream's integration platform allows you to integrate Voice Monkey and GitHub remarkably fast. Free for developers.

Trigger Monkey with Voice Monkey API on New Notification from GitHub API
GitHub + Voice Monkey
 
Try it
Display Image with Voice Monkey API on New Branch (Instant) from GitHub API
GitHub + Voice Monkey
 
Try it
Display Image with Voice Monkey API on New Card in Column (Instant) from GitHub API
GitHub + Voice Monkey
 
Try it
Display Image with Voice Monkey API on New Collaborator (Instant) from GitHub API
GitHub + Voice Monkey
 
Try it
Display Image with Voice Monkey API on New Commit Comment (Instant) from GitHub API
GitHub + Voice Monkey
 
Try it
New Branch from the GitHub API

Emit new event when a branch is created See the documentation

 
Try it
New Card in Column (Classic Projects) from the GitHub API

Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status trigger. More information here

 
Try it
New Collaborator from the GitHub API

Emit new event when a collaborator is added See the documentation

 
Try it
New Commit from the GitHub API

Emit new event when commits are pushed to a branch See the documentation

 
Try it
New Commit Comment from the GitHub API

Emit new event when a commit comment is created See the documentation

 
Try it
Display Image with the Voice Monkey API

This action will display an image on your device with a screen e.g. Echo Show. See docs here

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See docs here

 
Try it
Display Video with the Voice Monkey API

This action will display a video on your device with a screen e.g. Echo Show. See docs here

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See docs here

 
Try it
Make Announcement with the Voice Monkey API

This action will make an annoucement on your device using the text you supply. See docs here

 
Try it

Overview of Voice Monkey

Voice Monkey's Custom API allows you to build voice applications to extend your
business. Here are some examples of what you can create:

  • Virtual Assistants: Create a virtual assistant that can answer customer
    queries, provide relevant information and services, or even be a personal
    helper.
  • Home Automation: Transform your home with Voice Monkey's Custom API by adding
    voice control to lights, security systems, and other devices.
  • Interactive Voice Response (IVR): Streamline customer service with an
    automated system, allowing customers to interact with your business through
    voice commands.
  • Voice User Interfaces: Build interactive applications with natural language
    understanding and cognitive capabilities.
  • Smart Home Applications: Develop tools to monitor, control and automate your
    home.
  • Smart Robotic Applications: Create robots that respond to voice commands and
    operate autonomously with the help of Voice Monkey's Custom API.
  • Conversational Agents: Create AI-powered chatbots that can interact with
    customers and provide personalized information or services.
  • Content Aggregators: Pull content from multiple sources and create a unified,
    natural language interface.
  • Voice-controlled Games: Develop games powered by the Voice Monkey's Custom
    API, allowing users to interact using voice commands.

Connect Voice Monkey

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    voice_monkey: {
      type: "app",
      app: "voice_monkey",
    }
  },
  async run({steps, $}) {
    const data = {
      "access_token": `${this.voice_monkey.$auth.access_token}`,
      "secret_token": `${this.voice_monkey.$auth.secret_token}`,
      "monkey": `pipedream-monkey-1`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.voicemonkey.io/trigger`,
      data,
    })
  },
})

Connect GitHub

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: {
    github: {
      type: "app",
      app: "github",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.github.com/user`,
      headers: {
        Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
        "X-GitHub-Api-Version": `2022-11-28`,
      },
    })
  },
})