Questions tagged [discogs-api]

The API behind music marketplace Discogs. This tag should not be used for questions about discord.py "Cogs".

The API behind music marketplace Discogs. https://www.discogs.com/developers/

52 questions
6
votes
2 answers

How to get images of Discogs releases?

I want to get images of Discogs releases. Can I do it without Discogs API? They don't have links to the images in their db dumps.
user5869792
  • 71
  • 1
  • 3
6
votes
2 answers

Sorting JSON data by keys value

I am currently getting JSON data from the discogs API (mp3 tag data) and wish to sort the results by the key's value. In this case I am trying to get data for a Guns n Roses song and the output has 1988 as the first one while the data actually has a…
Prem Minister
  • 407
  • 2
  • 10
  • 20
5
votes
1 answer

Rate limit the number of request made from react client to API

I'm using React and fetch in the client to make requests to the Discogs API. In this API, there's a limit of max 60 request per minute. For managing this Discogs is adding custom values like "remaining requests", "used requests" or "maximum allowed…
giorgiline
  • 1,271
  • 4
  • 21
  • 35
4
votes
1 answer

How do I authenticate a POST to the Discogs API with PHP / cURL

I've successfully used the example here https://gist.github.com/tonefolder/44191a29454f9059c7e6 to authenticate a user and to store the oauth_token and oauth_token_secret. I can then make authenticated GET requests using cURL. I don't know how to…
Ashley
  • 251
  • 5
  • 19
3
votes
0 answers

How to add an item to discogs inventory using python

I´m currently trying to automate my shop. That´s why I wanted to add items to my store via discogs api. I tried the official discogs client for python at first but it looks like there is no way to add new items. I only was able to make requests,…
cpow
  • 476
  • 4
  • 8
3
votes
1 answer

Using APIs to Filter Albums by Years

So I'm working on an application that has a feature that generates a list of 100 or so artists that are similar to those in the user's music catalog using the Echo Nest API. Then, a user can supply a certain year, and, based on the similar artists,…
user1427661
  • 11,158
  • 28
  • 90
  • 132
2
votes
0 answers

Looking for a php class for the new Discogs API (v2.0)

Anyone know of any php classes to interact with the new Discogs API (v2.0)? I found loads of stuff relating to the old API (this for example), but nothing for the new one (which no longer requires an API key). Thanks in advance!
Marlon Creative
  • 3,756
  • 19
  • 55
  • 76
2
votes
1 answer

Trouble with API responses

This is slightly niche since it focuses on the Discogs API, but I'm hoping someone on this more active forum might have experience with it. I'm working on a data engineering problem to try and reduce inventory lag. my goal is to pull my inventory…
ike
  • 342
  • 3
  • 17
2
votes
1 answer

discogs post https://api.discogs.com/marketplace/listings? returned a response status of 422 null

I'm trying to post api.discogs.com/marketplace/listings?... in java. When I try to make a newlisting post, the result is "returned a response status of 422 null". "422 Unprocessable Entity Your request was well-formed, but there’s something…
Vildanb
  • 21
  • 1
2
votes
2 answers

Connecting to Discogs REST API

I'm attempting to use the Discogs API to fetch some titles via Node.js and the node-fetch package. I've attached an example below. I suspect that I'm not setting up authorization right. I know that for some actions I need to do a full Oauth login…
zkwsk
  • 1,960
  • 4
  • 26
  • 34
2
votes
0 answers

Accessing Discogs with the Ruby Wrapper: The key 'count' has been replaced with 'total'

I'm trying to write a short script that reads Label ID's of records from a CSV file, searches Discogs for them and returns all the info found, I'm using this ruby wrapper to access Discogs: https://github.com/buntine/discogs require…
rtuz2th
  • 79
  • 8
1
vote
0 answers

Are there any API that allow to retrieve the musicians involved in a certain album/track?

I've looked at MusicBrainz, Deezer, Discogs, and Spotify API and none of them provide a direct relationship between an album/track and the musicians who played it. Usually, for example, you can get that Queen created the album "Made in Heaven", but…
Chris
  • 1,140
  • 15
  • 30
1
vote
0 answers

php discogs API auth flow

I'm trying to use the discogs php api in a PHP script to get info on a release using the release ID. For example, when I make a request to: http://mywebsite.com/test.php?id=1017868 I want to call the discogs API to get info on the release with id…
Martin
  • 1,336
  • 4
  • 32
  • 69
1
vote
1 answer

Using R to Scrape discogs

I use the following in my attempt to get a list of album release from Hank Mobley, a Blue Note jazz musician: library(magrittr);library(httr) releasesHM<-httr::GET("https://api.discogs.com/artists/135872/releases") This result is error free and I…
Ben
  • 1,113
  • 10
  • 26
1
vote
1 answer

How to fetch large images from discogs api?

Is it possible to get higher quality images from discogs api? Right now I can only get a thumbnail image of size 150x150. Is there any way for developers to get a better quality image? The JSON only has link for thumnail images. So if this is my…
varunkr
  • 5,364
  • 11
  • 50
  • 99
1
2 3 4