Generated Photos

Unique, worry-free model photos

Go to site
Explore
/
Apps
/
Generated Photos

Generated Photos API Integrations

Build and run workflows using the Generated Photos 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

The Generated Photos API lets developers generate realistic photos of people and products. This can be useful for creating stock photos, or for building applications that require lifelike images of people or products.

Here are some examples of what you can build with the Generated Photos API:

  • A stock photo library
  • A photorealistic product rendering tool
  • A social media application that requires lifelike images of people
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: {
    generated_photos: {
      type: "app",
      app: "generated_photos",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.generated.photos/api/v1/faces?per_page=1`,
      params: {
        api_key: `${this.generated_photos.$auth.api_key}`,
      },
    })
  },
})

Authentication

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