search
Query the Discogs database to find artists, labels, releases, or masters using specific filters like title, genre, year, or format. Retrieve detailed results for music catalog management.
Instructions
Issue a search query to the Discogs database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
anv | No | ||
artist | No | ||
barcode | No | ||
catno | No | ||
contributor | No | ||
country | No | ||
credit | No | ||
format | No | ||
genre | No | ||
label | No | ||
page | No | ||
per_page | No | ||
q | No | ||
release_title | No | ||
sort | No | ||
sort_order | No | ||
style | No | ||
submitter | No | ||
title | No | ||
track | No | ||
type | No | ||
year | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"anv": {
"type": "string"
},
"artist": {
"type": "string"
},
"barcode": {
"type": "string"
},
"catno": {
"type": "string"
},
"contributor": {
"type": "string"
},
"country": {
"type": "string"
},
"credit": {
"type": "string"
},
"format": {
"type": "string"
},
"genre": {
"type": "string"
},
"label": {
"type": "string"
},
"page": {
"minimum": 1,
"type": "integer"
},
"per_page": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"q": {
"type": "string"
},
"release_title": {
"type": "string"
},
"sort": {
"enum": [
"title",
"artist",
"year"
],
"type": "string"
},
"sort_order": {
"enum": [
"asc",
"desc"
],
"type": "string"
},
"style": {
"type": "string"
},
"submitter": {
"type": "string"
},
"title": {
"type": "string"
},
"track": {
"type": "string"
},
"type": {
"enum": [
"artist",
"label",
"master",
"release"
],
"type": "string"
},
"year": {
"type": "string"
}
},
"type": "object"
}