What do you want to automate

with Sanity and Reduct.Video?

Prompt, edit and deploy AI agents that connect to Sanity, Reduct.Video and 2,800+ 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
Integrate the Sanity API with the Reduct.Video API
Setup the Sanity API trigger to run a workflow which integrates with the Reduct.Video API. Pipedream's integration platform allows you to integrate Sanity and Reduct.Video remarkably fast. Free for developers.

Connect Sanity

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: {
    sanity: {
      type: "app",
      app: "sanity",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.sanity.$auth.project_id}.api.sanity.io/v2021-06-07/data/query/production`,
      headers: {
        Authorization: `Bearer ${this.sanity.$auth.api_token}`,
      },
      params: {
        query: `*`,
      },
    })
  },
})

Connect Reduct.Video

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: {
    reduct_video: {
      type: "app",
      app: "reduct_video",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.reduct.video/api/v3/project`,
      headers: {
        "x-auth-key": `${this.reduct_video.$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