The world’s leading independent website for 3D printer files. Discover & download the best 3D models for your 3D printing projects.
Go to siteCults 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,
})
},
})
Automated Tweet of New 3D Models: When a new model is uploaded to Cults that matches certain criteria (e.g., category, tags, or popularity), trigger a workflow that automatically posts a tweet about the model with a link to drive traffic or awareness.
Daily Digest of New Designs: Compile a daily digest of new 3D designs uploaded to Cults in a specific category and send the list via email, Slack, or Discord. Use this to keep a community or customer base informed about the latest models available for 3D printing.
Sync New Models to a Database: Automatically add new 3D model listings from Cults to a database or a Google Sheet for inventory tracking, price monitoring, or creating a curated repository. This can be useful for retailers or enthusiasts who want to maintain a database of models.
Cults uses API keys for authentication. When you connect your Cults account, Pipedream securely stores the keys so you can easily authenticate to Cults APIs in both code and no-code steps.