Webflow

Webflow is the leading visual development platform for building powerful websites without writing code.

Integrate the Webflow API with the OpenAI (ChatGPT) API

Setup the Webflow API trigger to run a workflow which integrates with the OpenAI (ChatGPT) API. Pipedream's integration platform allows you to integrate Webflow and OpenAI (ChatGPT) remarkably fast. Free for developers.

Create Image with OpenAI (ChatGPT) API on New Form Submission from Webflow API
Webflow + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on New Changed Collection Item from Webflow API
Webflow + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on New Changed E-commerce Inventory from Webflow API
Webflow + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on New Changed E-commerce Order from Webflow API
Webflow + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on New Collection Item from Webflow API
Webflow + OpenAI (ChatGPT)
 
Try it
New Form Submission from the Webflow API

Emit new event when a new form is submitted. See the docs here

 
Try it
New Collection Item from the Webflow API

Emit new event when a collection item is created. See the docs here

 
Try it
New Changed Collection Item from the Webflow API

Emit new event when a collection item is changed. See the docs here

 
Try it
New Changed E-commerce Inventory from the Webflow API

Emit new event when an e-commerce inventory level changes. See the docs here

 
Try it
New Changed E-commerce Order from the Webflow API

Emit new event when an e-commerce order is changed. See the docs here

 
Try it
Chat with the OpenAI (ChatGPT) API

The Chat API, using the gpt-3.5-turbo or gpt-4 model. See docs here

 
Try it
Summarize Text with the OpenAI (ChatGPT) API

Summarizes text using the Chat API

 
Try it
Create Collection Item with the Webflow API

Create new collection item. See the docs here

 
Try it
Classify Items into Categories with the OpenAI (ChatGPT) API

Classify items into specific categories using the Chat API

 
Try it
Delete Collection Item with the Webflow API

Delete Item of a Collection. See the docs here

 
Try it

Overview of Webflow

The Webflow API empowers developers to programmatically interact with their Webflow site, enabling automation, data synchronization, and complex integrations with other apps and services. With Pipedream's serverless platform, you can harness this API to craft custom workflows that react to events, manage content dynamically, or extend the capabilities of your Webflow projects by linking them with a vast array of other applications.

Connect Webflow

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: {
    webflow: {
      type: "app",
      app: "webflow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.webflow.com/user`,
      headers: {
        Authorization: `Bearer ${this.webflow.$auth.oauth_access_token}`,
        "accept-version": `1.0.0`,
      },
    })
  },
})

Overview of OpenAI (ChatGPT)

OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:

Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:

Connect OpenAI (ChatGPT)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    openai: {
      type: "app",
      app: "openai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.openai.com/v1/models`,
      headers: {
        Authorization: `Bearer ${this.openai.$auth.api_key}`,
      },
    })
  },
})