What do you want to automate

with change.photos and Voiceflow?

Prompt, edit and deploy AI agents that connect to change.photos, Voiceflow and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Transform Image with the change.photos API

Transforms an image with various effects and optimizations. See the documentation

 
Try it
Integrate the change.photos API with the Voiceflow API
Setup the change.photos API trigger to run a workflow which integrates with the Voiceflow API. Pipedream's integration platform allows you to integrate change.photos and Voiceflow remarkably fast. Free for developers.

Connect change.photos

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    change_photos: {
      type: "app",
      app: "change_photos",
    }
  },
  async run({steps, $}) {
    const data =  {
          "url": `https://pipedream.com/s.v0/app_13GhYE/logo/orig`,
          "grayscale": true,
        }
    return await axios($, {
      method: "post",
      url: `https://www.change.photos/api/change`,
      headers: {
        Authorization: `Bearer ${this.change_photos.$auth.api_key}`,
        "content-type": `application/json`,
        "accept": `application/json`,
      },
      data,
    })
  },
})

Overview of Voiceflow

The Voiceflow API provides programmatic access to Voiceflow's conversational AI platform, enabling users to create, update, and deploy voice and chat applications. Through Pipedream, developers can automate workflows involving Voiceflow projects, such as syncing conversation designs with external tools, triggering customer support messages based on user interactions, or compiling analytics from user sessions.

Connect Voiceflow

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: {
    voice: {
      type: "app",
      app: "voice",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.voiceflow.com/v3alpha/knowledge-base/faqs`,
      headers: {
        "Accept": `application/json`,
        "Authorization": `${this.voice.$auth.api_key}`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo