Discover music on Discogs, the largest online music database. Buy and sell music with collectors in the Marketplace.
Emit new event when there is an order with status 'New Order'. See the documentation
Emits an event when an order status changes to 'Cancelled'. See the documentation
Emit new event for every new row added in a table. See documentation here
Emit new event for every insert
, update
, or delete
operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here
Creates a new listing in the Discogs marketplace. See the documentation
Updates the status of an existing order on Discogs. See the documentation
The Discogs API offers a gateway to rich data on music artists, labels, and releases. With Pipedream, you can harness this data to create automated workflows that can tap into a vast repository of music information. Whether you're looking to sync your music collection with a personal database, track marketplace activity, or curate personalized music recommendations, the Discogs API paired with Pipedream provides a streamlined platform for integrating and automating these processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discogs: {
type: "app",
app: "discogs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.discogs.com/database/search?q=jimi+hendrix&type=artist%22`,
headers: {
"Authorization": `Discogs token=${this.discogs.$auth.personal_access_token}`,
},
})
},
})
Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
supabase: {
type: "app",
app: "supabase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
headers: {
Authorization: `Bearer ${this.supabase.$auth.service_key}`,
"apikey": `${this.supabase.$auth.service_key}`,
},
})
},
})