Let's Enhance

Image enhancement powered by AI

Go to site
Explore
/
Apps
/
Let's Enhance

Let's Enhance API Integrations

Build and run workflows using the Let's Enhance API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

Some of the great things you can build using the Let's Enhance API include:

  • A "before and after" photo comparison tool, to show people how your product can improve their images
  • An online photo editor, to offer users a way to improve their photos without expensive software
  • A mobile app for editing photos on the go
  • A website or blog where you can offer photo enhancement services
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    let_s_enhance: {
      type: "app",
      app: "let_s_enhance",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.letsenhance.ai/v1.95/op/upscale`,
      headers: {
        "x-api-key": `${this.let_s_enhance.$auth.api_key}`,
      },
      params: {
        url: `https://res-5.cloudinary.com/crunchbase-production/image/upload/c_lpad,f_auto,q_auto:eco/tnorenk8asjwdh1o8iuu`,
      },
    })
  },
})

Authentication

Let's Enhance uses API keys for authentication. When you connect your Let's Enhance account, Pipedream securely stores the keys so you can easily authenticate to Let's Enhance APIs in both code and no-code steps.