npm

Node package manager

Integrate the npm API with the Amazon Alexa API

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

Get Simulation Results with Amazon Alexa API on npm Download Counts from npm API
npm + Amazon Alexa
 
Try it
Simulate Alexa Skill with Amazon Alexa API on npm Download Counts from npm API
npm + Amazon Alexa
 
Try it
Get Simulation Results with Amazon Alexa API on New Package Version from npm API
npm + Amazon Alexa
 
Try it
Simulate Alexa Skill with Amazon Alexa API on New Package Version from npm API
npm + Amazon Alexa
 
Try it
New Download Counts from the npm API

Emit new event with the latest count of downloads for an npm package. See the documentation.

 
Try it
New Package Version from the npm API

Emit new event when a new version of an npm package is published. See the documentation

 
Try it
Get Simulation Results with the Amazon Alexa API

Get the results of the specified simulation for an Alexa skill. See the documentation

 
Try it
Simulate Alexa Skill with the Amazon Alexa API

Simulate a dialog from an Alexa-enabled device and receive the skill response for the specified example utterance. See the documentation

 
Try it

Overview of Amazon Alexa

The Amazon Alexa API connects your Pipedream workflows to Alexa's smart capabilities, enabling you to build voice-driven interactions and extend the functionality of Alexa Skills. Interact with users through their Alexa devices, manage and update Skills, or harness Alexa's smart home control. With Pipedream's serverless platform, you can create complex workflows that respond to Alexa events, trigger actions in other services, or process voice commands for custom outcomes.

Connect Amazon Alexa

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    amazon_alexa: {
      type: "app",
      app: "amazon_alexa",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.amazonalexa.com/v1/skills/{{your_skill_id}}/credentials`, //for testing: amzn1.ask.skill.94225570-3d93-4671-acb0-34160d640740
      headers: {
        Authorization: `Bearer ${this.amazon_alexa.$auth.oauth_access_token}`,
        "Accept": `application/json`,
        "Content-Type": `application/json`,
      },
    })
  },
})