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.
Emit new event each time a Telegram Bot command is received.
Emit new event each time a channel post is created or updated.
Emit new event each time a Telegram message is created or updated.
This action will display an image on your device with a screen e.g. Echo Show. See docs here
Create an additional invite link for a chat, See the docs for more information
This action will display a video on your device with a screen e.g. Echo Show. See docs here
This action will make an annoucement on your device using the text you supply. See docs here
Voice Monkey's Custom API allows you to build voice applications to extend your
business. Here are some examples of what you can create:
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,
})
},
})
With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
telegram_bot_api: {
type: "app",
app: "telegram_bot_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.telegram.org/bot${this.telegram_bot_api.$auth.token}/getMe`,
})
},
})