Sitecreator.io is an easy-to-use platform that allows you to quickly create a professional looking website.
Emit new event when a new lead is added to a website. See the docs here
Emit new event when a new newsletter contact is added to a website. See the docs here
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sitecreator_io: {
type: "app",
app: "sitecreator_io",
}
},
async run({steps, $}) {
const data = {
"siteUrl": `{your_site_url}`,
}
return await axios($, {
method: "post",
url: `https://api.sitecreator.io/v1/site/checkAvailability`,
headers: {
"Content-Type": `application/json`,
"Your_Api_Key": `${this.sitecreator_io.$auth.api_key}`,
},
data,
})
},
})
The Replicate API allows you to access a wide array of machine learning models for tasks such as image generation, text-to-image, and more. Using Pipedream, you can orchestrate these models to automate content creation, analyze media, or enhance data with AI-generated insights. Pipedream's serverless platform empowers you to create workflows that react to events, schedule tasks, and integrate with numerous other services, all harnessing the power of Replicate's AI models.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
replicate: {
type: "app",
app: "replicate",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.replicate.com/v1/predictions`,
headers: {
"Authorization": `Token ${this.replicate.$auth.api_key}`,
},
})
},
})