Discogs
Music
- Authentication
- OAuth
- HTTPS
- Yes
- CORS
- Unknown
- Category
- Music
- Documentation / URL
- https://www.discogs.com/developers/
Overview
The Discogs API searches the world’s largest vinyl/music database — releases, artists, labels, and marketplace. Public searches work without auth (verified live — 197k+ results); OAuth adds user collections and marketplace.
Quick Start
Database search — no auth needed (verified live):
curl "https://api.discogs.com/database/search?q=queen&type=release"
{
"pagination": { "page": 1, "pages": 200, "per_page": 50, "items": 197513 },
"results": [
{ "id": 12345, "title": "Queen - A Night At The Opera", "year": 1975, "format": ["Vinyl", "LP"], "thumb": "https://..." }
]
}
Release details:
curl "https://api.discogs.com/releases/12345"
Authentication
- Anonymous: database reads work keyless (verified — rate-limited).
- OAuth 1.0a (or a personal token) for user collections and marketplace orders.
- Send a token as the
Authorization: Discogs token=YOUR_TOKENheader.
Rate Limits & Notes
- Anonymous: ~25 requests/minute (be polite); authenticated: 60/minute.
- Endpoints:
/database/search,/releases/{id},/artists/{id},/labels/{id},/marketplace/.... - The marketplace API needs OAuth.
FAQ
Is Discogs API free? Yes — public search works keyless (verified).
Do I need auth? Only for user collections and marketplace.
What’s the rate limit? ~25 req/min anonymous, 60 with auth.
More in Music
| API | Auth | HTTPS | CORS | |
|---|---|---|---|---|
| 7digital Api of Music store 7digital | OAuth | Yes | Unknown | ↗ |
| AI Mastering Automated Music Mastering | API Key | Yes | Yes | ↗ |
| Audiomack Api of the streaming music hub Audiomack | OAuth | Yes | Unknown | ↗ |
| Bandcamp API of Music store Bandcamp | OAuth | Yes | Unknown | ↗ |
| Bandsintown Music Events | No auth | Yes | Unknown | ↗ |