Discogs

Discover music on Discogs, the largest online music database. Buy and sell music with collectors in the Marketplace.

Integrate the Discogs API with the OpenAI (ChatGPT) API

Setup the Discogs API trigger to run a workflow which integrates with the OpenAI (ChatGPT) API. Pipedream's integration platform allows you to integrate Discogs and OpenAI (ChatGPT) remarkably fast. Free for developers.

Chat with OpenAI (ChatGPT) API on New Order Received from Discogs API
Discogs + OpenAI (ChatGPT)
 
Try it
Chat with OpenAI (ChatGPT) API on Order Cancelled from Discogs API
Discogs + OpenAI (ChatGPT)
 
Try it
Summarize Text with OpenAI (ChatGPT) API on New Order Received from Discogs API
Discogs + OpenAI (ChatGPT)
 
Try it
Summarize Text with OpenAI (ChatGPT) API on Order Cancelled from Discogs API
Discogs + OpenAI (ChatGPT)
 
Try it
Classify Items into Categories with OpenAI (ChatGPT) API on New Order Received from Discogs API
Discogs + OpenAI (ChatGPT)
 
Try it
New Order Received from the Discogs API

Emit new event when there is an order with status 'New Order'. See the documentation

 
Try it
Order Cancelled from the Discogs API

Emits an event when an order status changes to 'Cancelled'. See the documentation

 
Try it
New File Created from the OpenAI (ChatGPT) API

Emit new event when a new file is created in OpenAI. See the documentation

 
Try it
New Fine Tuning Job Created from the OpenAI (ChatGPT) API

Emit new event when a new fine-tuning job is created in OpenAI. See the documentation

 
Try it
New Run State Changed from the OpenAI (ChatGPT) API

Emit new event every time a run changes its status. See the documentation

 
Try it
Create Marketplace Listing with the Discogs API

Creates a new listing in the Discogs marketplace. See the documentation

 
Try it
Chat with the OpenAI (ChatGPT) API

The Chat API, using the gpt-3.5-turbo or gpt-4 model. See docs here

 
Try it
Summarize Text with the OpenAI (ChatGPT) API

Summarizes text using the Chat API

 
Try it
Classify Items into Categories with the OpenAI (ChatGPT) API

Classify items into specific categories using the Chat API

 
Try it
Update Order Status with the Discogs API

Updates the status of an existing order on Discogs. See the documentation

 
Try it

Overview of Discogs

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.

Connect Discogs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Overview of OpenAI (ChatGPT)

OpenAI provides a suite of powerful AI models through its API, enabling developers to integrate advanced natural language processing and generative capabilities into their applications. Here’s an overview of the services offered by OpenAI's API:

Use Python or Node.js code to make fully authenticated API requests with your OpenAI account:

Connect OpenAI (ChatGPT)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    openai: {
      type: "app",
      app: "openai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.openai.com/v1/models`,
      headers: {
        Authorization: `Bearer ${this.openai.$auth.api_key}`,
      },
    })
  },
})