calliostro/php-discogs-api

PHP library for the Discogs API โ€” vinyl, music data & integration made easy

v2.1.2 2025-08-23 17:33 UTC

README

CI Version License

This library is a PHP 7.3+ / PHP 8.x implementation of the Discogs API v2.0. The Discogs API is a REST-based interface. By using this library you don't have to worry about communicating with the API: all the hard work has already been done.

Tested & Supported PHP Versions: 7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5 (beta)

๐Ÿš€ API Coverage

This library implements all major Discogs API endpoints:

  • โœ… Database: Search, Artists, Releases, Masters, Labels
  • โœ… User Management: Profile, Collection, Wantlist, Lists
  • โœ… Marketplace: Orders, Inventory, Listings, Bulk operations
  • โœ… Order Management: Messages, Status updates, Shipping
  • โœ… Authentication: Personal tokens, OAuth 1.0a, Consumer keys

โšก Quick Start

<?php
use Discogs\ClientFactory;

// Create a client with User-Agent (required by Discogs)
// For basic public data access, use consumer key/secret
$client = ClientFactory::factory([
    'headers' => [
        'User-Agent' => 'MyApp/1.0 +https://mysite.com',
        'Authorization' => 'Discogs key=your_consumer_key, secret=your_consumer_secret'
    ]
]);

// Search for music (requires authentication)
$results = $client->search(['q' => 'Pink Floyd', 'type' => 'artist']);

// Get detailed information
$artist = $client->getArtist(['id' => $results['results'][0]['id']]);
echo $artist['name']; // "Pink Floyd"

Note: Most API endpoints require authentication. Get your consumer key/secret from the Discogs Developer Settings.

๐Ÿ“ฆ Installation

Start by installing composer. Next do:

$ composer require calliostro/php-discogs-api

โš™๏ธ Requirements

  • PHP: 7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5 (beta) โ€” tested and officially supported
  • ext-json: JSON extension
  • cURL extension: for HTTP requests via Guzzle

๐Ÿงช Testing

Run tests with:

For all PHP versions (recommended):

vendor/bin/phpunit

For PHP 7.3-7.4 (alternative legacy configuration):

vendor/bin/phpunit --configuration phpunit-legacy.xml.dist

๐Ÿ’ก Usage

Creating a new instance is as simple as:

<?php

$client = Discogs\ClientFactory::factory([]);

However, authentication is required for most API endpoints. See the authentication section below.

User-Agent

Discogs requires that you supply a User-Agent. You can do this easily:

<?php

$client = Discogs\ClientFactory::factory([    
    'headers' => ['User-Agent' => 'your-app-name/0.1 +https://www.awesomesite.com'],
]);

Throttling

Discogs API has rate limits. Use the ThrottleSubscriber to prevent errors or getting banned:

<?php
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Middleware;
use Discogs\Subscriber\ThrottleSubscriber;

$handler = HandlerStack::create();
$throttle = new ThrottleSubscriber();
$handler->push(Middleware::retry($throttle->decider(), $throttle->delay()));

$client = ClientFactory::factory([
    'headers' => [
        'User-Agent' => 'MyApp/1.0 +https://mysite.com',
        'Authorization' => 'Discogs key=your_key, secret=your_secret'
    ],
    'handler' => $handler
]);

๐Ÿ” Authentication

Discogs API allows you to access protected endpoints with different authentication methods. Most endpoints require some form of authentication.

Get your credentials: Register your application at Discogs Developer Settings

๐ŸŽฏ Discogs Auth

As stated in the Discogs Authentication documentation:

To access protected endpoints, you'll need to register for either a consumer key and secret or user token, depending on your situation:

  • To easily access your own user account information, use a User token.
  • To get access to an endpoint that requires authentication and build third party apps, use a Consumer Key and Secret.

Consumer Key and Secret (Recommended)

Register your app at Discogs Developer Settings to get consumer credentials:

<?php

$client = ClientFactory::factory([
    'headers' => [
        'User-Agent' => 'MyApp/1.0 +https://mysite.com',
        'Authorization' => 'Discogs key=your_consumer_key, secret=your_consumer_secret',
    ],
]);

Personal Access Token

For accessing your own account data, use a personal access token:

<?php

$client = ClientFactory::factory([
    'headers' => [
        'User-Agent' => 'MyApp/1.0 +https://mysite.com',
        'Authorization' => 'Discogs token=your_personal_token',
    ]
]);

OAuth 1.0a

For advanced use cases requiring user-specific access tokens, OAuth 1.0a is supported. First, get OAuth credentials through the Discogs OAuth flow.

<?php
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Subscriber\Oauth\Oauth1;

$stack = HandlerStack::create();

$oauth = new Oauth1([
    'consumer_key'    => 'your_consumer_key',       // from Discogs developer page
    'consumer_secret' => 'your_consumer_secret',    // from Discogs developer page
    'token'           => 'user_oauth_token',        // from OAuth flow
    'token_secret'    => 'user_oauth_token_secret'  // from OAuth flow
]);

$stack->push($oauth);

$client = ClientFactory::factory([
    'headers' => [
        'User-Agent' => 'MyApp/1.0 +https://mysite.com'
    ],
    'handler' => $stack,
    'auth' => 'oauth'
]);

Note: Implementing the full OAuth flow is complex. For examples, see ricbra/php-discogs-api-example.

History

Another cool plugin is the History plugin:

<?php
use GuzzleHttp\Middleware;
use GuzzleHttp\HandlerStack;

$container = [];
$history = Middleware::History($container);
$handler = HandlerStack::create();
$handler->push($history);

$client = Discogs\ClientFactory::factory([ 
    'headers' => [
        'User-Agent' => 'MyApp/1.0 +https://mysite.com',
        'Authorization' => 'Discogs key=your_key, secret=your_secret'
    ],
    'handler' => $handler
]);

$response = $client->search([
    'q' => 'searchstring'
]);

foreach ($container as $row) {
    print $row['request'] -> getMethod();        // GET
    print $row['request'] -> getRequestTarget(); // /database/search?q=searchstring
    print strval($row['request'] -> getUri());   // https://api.discogs.com/database/search?q=searchstring
    print $row['response'] -> getStatusCode();   // 200
    print $row['response'] -> getReasonPhrase(); // OK
}

More info and plugins

For more information about Guzzle and its plugins checkout the docs.

Perform a search:

Authentication is required for this endpoint.

<?php

$response = $client->search([
    'q' => 'Meagashira'
]);
// Loop through results
foreach ($response['results'] as $result) {
    var_dump($result['title']);
}
// Pagination data
var_dump($response['pagination']);

// Dump all data
var_dump($response->toArray());

Get information about a label:

<?php

$label = $client->getLabel([
    'id' => 1
]);

Get information about an artist:

<?php

$artist = $client->getArtist([
    'id' => 1
]);

Get information about a release:

<?php

$release = $client->getRelease([
    'id' => 1
]);

echo $release['title']."\n";

Get information about a master release:

<?php

$master  = $client->getMaster([
    'id' => 1
]);

echo $master['title']."\n";

Get image

Discogs returns the full url to images, so just use the internal client to get those:

<?php

$release = $client->getRelease([
    'id' => 1
]);

foreach ($release['images'] as $image) {
    $response = $client->getHttpClient()->get($image['uri']);
    // response code
    echo $response->getStatusCode();
    // image blob itself
    echo $response->getBody()->getContents();
}

User lists

Get user lists

<?php

$userLists = $client->getUserLists([
    'username' => 'example',
    'page' => 1,      // default
    'per_page' => 500 // min 1, max 500, default 50
]);

Get user list items

<?php

$listItems = $client->getLists([
    'list_id' => 1
]);

Get user wantlist

<?php

$wantlist = $client->getWantlist([
    'username' => 'example',
    'page' => 1,      // default
    'per_page' => 500 // min 1, max 500, default 50
]);

User Collection

Authorization is required when folder_id is not 0.

Get collection folders

<?php

$folders = $client->getCollectionFolders([
    'username' => 'example'
]);

Get a collection folder

<?php

$folder = $client->getCollectionFolder([
    'username' => 'example',
    'folder_id' => 1
]);

Get collection items by folder

<?php

$items = $client->getCollectionItemsByFolder([
    'username' => 'example',
    'folder_id' => 3
]);

๐Ÿ›’ Listings

Creating and manipulating listings requires you to be authenticated as the seller

Create a Listing

<?php

$response = $client->createListing([
    'release_id' => '1',
    'condition' => 'Good (G)',
    'price' => 3.49,
    'status' => 'For Sale'
]);

Change Listing

<?php

$response = $client->changeListing([
    'listing_id' => '123',
    'condition' => 'Good (G)',
    'price' => 3.49,
]);

Delete a Listing

<?php

$response = $client->deleteListing(['listing_id' => '123']);

Create Listings in bulk (via CSV)

<?php
$response = $client->addInventory(['upload' => fopen('path/to/file.csv', 'r')]);

// CSV format (example): 
// release_id,condition,price
// 1,Mint (M),19.99
// 2,Near Mint (NM or M-),14.99

Delete Listings in bulk (via CSV)

<?php
$response = $client->deleteInventory(['upload' => fopen('path/to/file.csv', 'r')]);

// CSV format (example): 
// listing_id
// 123
// 213
// 321

๐Ÿ“ˆ Orders & Marketplace

Get orders

<?php

$orders = $client->getOrders([
    'status' => 'New Order', // optional
    'sort' => 'created',     // optional
    'sort_order' => 'desc'   // optional
]);

Get a specific order

<?php

$order = $client->getOrder(['order_id' => '123-456']);

Update order

<?php

$response = $client->changeOrder([
    'order_id' => '123-456',
    'status' => 'Shipped',
    'shipping' => 5.00
]);

๐Ÿ‘ค User Profile & Identity

Get authenticated user identity

<?php

$identity = $client->getOAuthIdentity();

Get user profile

<?php

$profile = $client->getProfile(['username' => 'discogs_user']);

Get user inventory

<?php

$inventory = $client->getInventory([
    'username' => 'seller_name',
    'status' => 'For Sale', // optional
    'per_page' => 100       // optional
]);

๐Ÿ”ง Symfony Bundle

For integration with Symfony 6.4 (LTS), 7.x, and 8.0 (beta), see calliostro/discogs-bundle.

๐Ÿ“š Documentation

Further documentation can be found at the Discogs API v2.0 Documentation.

๐Ÿ“„ License

This library is released under the MIT license. See the complete license in the LICENSE file.

๐Ÿค Contributing

Implemented a missing feature? You can request it. And creating a pull request is an even better way to get things done.

๐Ÿ™ Thanks to

Initial development by ricbra/php-discogs-api.

Enhanced and modernized by AnssiAhola/php-discogs-api with additional API methods.

This library is built upon Guzzle HTTP for reliable API communication.