Spoonacular

Free meal planner with nutritional info. Save recipes from any site. All Your Food. One Place

Integrate the Spoonacular API with the Supabase API

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

Convert Measurements with Spoonacular API on New Row Added from Supabase API
Supabase + Spoonacular
 
Try it
Convert Measurements with Spoonacular API on New Webhook Event (Instant) from Supabase API
Supabase + Spoonacular
 
Try it
Create Meal Plan with Spoonacular API on New Row Added from Supabase API
Supabase + Spoonacular
 
Try it
Create Meal Plan with Spoonacular API on New Webhook Event (Instant) from Supabase API
Supabase + Spoonacular
 
Try it
Search Recipes with Spoonacular API on New Row Added from Supabase API
Supabase + Spoonacular
 
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
Convert Measurements with the Spoonacular API

Converts a measurements. See docs here

 
Try it
Delete Row with the Supabase API

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

 
Try it
Create Meal Plan with the Spoonacular API

Creates a meal plan. See docs here

 
Try it
Insert Row with the Supabase API

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

 
Try it
Search Recipes with the Spoonacular API

Search for a recipe. See docs here

 
Try it

Overview of Spoonacular

The Spoonacular API is a robust culinary interface that can enhance apps with food and nutrition data. With rich endpoints for recipes, ingredients, and meal planning, developers can automate content creation, manage diet tracking, or enrich e-commerce platforms. Pipedream's serverless platform empowers you to create custom Spoonacular workflows, linking with other APIs and services to streamline tasks, like auto-generating shopping lists or scheduling weekly meal plans based on dietary preferences.

Connect Spoonacular

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: {
    spoonacular: {
      type: "app",
      app: "spoonacular",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.spoonacular.com/recipes/complexSearch`,
      headers: {
        "Content-Type": `application/json`,
        "x-api-key": `${this.spoonacular.$auth.api_key}`,
      },
      params: {
        query: `{your_query}`,
      },
    })
  },
})

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