Discogs
3 days trial then $12.00/month - No credit card required now
Discogs
3 days trial then $12.00/month - No credit card required now
Get or search for prices, artists, releases, labels and more from Discogs. It's fast and costs little!
You can access the Discogs programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9 "ids": ["32515302"],
10 "myids": { "input": [
11 {
12 "id": "https://www.discogs.com/label/1430979-Daft-Punk",
13 "process": "get",
14 "category": "label",
15 },
16 {
17 "id": "855971",
18 "process": "get",
19 "category": "artist",
20 },
21 {
22 "id": "855971",
23 "process": "get",
24 "category": "artistReleases",
25 },
26 {
27 "id": "daft punk",
28 "process": "search",
29 "category": "artist",
30 },
31 {
32 "id": "https://www.discogs.com/sell/release/32515302",
33 "process": "sell",
34 "category": "release",
35 },
36 {
37 "id": "00602508108556",
38 "process": "sell",
39 "category": "list",
40 },
41 ] },
42 "mycookie": "",
43 "proxy": {
44 "useApifyProxy": True,
45 "apifyProxyGroups": ["RESIDENTIAL"],
46 },
47}
48
49# Run the Actor and wait for it to finish
50run = client.actor("canadesk/discogs").call(run_input=run_input)
51
52# Fetch and print Actor results from the run's dataset (if there are any)
53print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
54for item in client.dataset(run["defaultDatasetId"]).iterate_items():
55 print(item)
56
57# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Discogs API in Python
The Apify API client for Python is the official library that allows you to use Discogs API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
pip install apify-client
Other API clients include:
Actor Metrics
1 monthly user
-
1 star
>99% runs succeeded
Created in Jan 2025
Modified a day ago