Discover music on Discogs, the largest online music database. Buy and sell music with collectors in the Marketplace.
Go to siteThe 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}`,
},
})
},
})
Sync Discogs Marketplace Listings to Google Sheets
Track new listings on the Discogs Marketplace in real-time by creating a workflow that triggers when new items are listed. Automatically add these details to a Google Sheet for easy monitoring and analysis.
Notify When a Rare Record is Listed
Set up a Pipedream workflow to alert you via email or SMS when a record on your wishlist or a rare vinyl is listed for sale. Use Pipedream's built-in connectivity to filter for condition, price, or seller rating to make sure you only get notifications for listings that meet your criteria.
Automate Collection Curation
Build a workflow that automatically adds new music recommendations to your Discogs wantlist based on your listening habits on Spotify. Trigger the workflow when a new track is added to a playlist or your favorite songs, then use the Discogs API to search for the release and update your wantlist.
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
Creates a new listing in the Discogs marketplace. See the documentation
Updates the status of an existing order on Discogs. See the documentation
Discogs uses API keys for authentication. When you connect your Discogs account, Pipedream securely stores the keys so you can easily authenticate to Discogs APIs in both code and no-code steps.