Amazon Alexa

Alexa is Amazon’s cloud-based voice service available on hundreds of millions of devices from Amazon and third-party device manufacturers. With Alexa, you can build natural voice experiences

Integrate the Amazon Alexa API with the Supabase API

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

Get Simulation Results with Amazon Alexa API on New Row Added from Supabase API
Supabase + Amazon Alexa
 
Try it
Get Simulation Results with Amazon Alexa API on New Webhook Event (Instant) from Supabase API
Supabase + Amazon Alexa
 
Try it
Simulate Alexa Skill with Amazon Alexa API on New Row Added from Supabase API
Supabase + Amazon Alexa
 
Try it
Simulate Alexa Skill with Amazon Alexa API on New Webhook Event (Instant) from Supabase API
Supabase + Amazon Alexa
 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
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
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
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
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Remote Procedure Call with the Supabase API

Call a Postgres function in a database. See the docs here

 
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`,
      },
    })
  },
})

Overview of Supabase

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Connect Supabase

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: {
    supabase: {
      type: "app",
      app: "supabase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
      headers: {
        Authorization: `Bearer ${this.supabase.$auth.service_key}`,
        "apikey": `${this.supabase.$auth.service_key}`,
      },
    })
  },
})