The world’s leading independent website for 3D printer files. Discover & download the best 3D models for your 3D printing projects.
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. See the documentation
Cults is a digital marketplace for 3D printing models. The Cults API allows you to interact with their platform programmatically. With the API, you can retrieve model data, search for designs, or get information about designers and makes. By leveraging Pipedream, you can automate workflows that react to new model uploads, filter searches, or integrate with other services like social media or notification systems. Pipedream's serverless platform provides an event-driven approach to execute code in response to Cults API events and connect to hundreds of other services with minimal setup.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cults: {
type: "app",
app: "cults",
}
},
async run({steps, $}) {
const data = {
"query": `{creations(limit:1){name url creator{nick}}}`,
}
return await axios($, {
method: "post",
url: `https://cults3d.com/graphql`,
headers: {
"Content-Type": `application/json`,
},
auth: {
username: `${this.cults.$auth.username}`,
password: `${this.cults.$auth.api_key}`,
},
data,
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})