itemPriceSuggestions Query
Description
Retrieves price suggestions and statistics from Discogs marketplace for a release item, including current listings, scraped prices, and market statistics.
query itemPriceSuggestions($id: Long, $discogsId: Long) {
itemPriceSuggestions(id: $id, discogsId: $discogsId) {
discogsPrices {
priceString
price
mediaCondition
sleeveCondition
notes
seller
shipsFrom
}
discogsScrappedPrices {
priceString
price
mediaCondition
sleeveCondition
notes
seller
shipsFrom
}
discogsStatistics {
have
want
lastSold
lowest
median
highest
}
discogsUrl
}
}
Variables
{
"id": 2800984063087,
"discogsId": 987654321
}
Response
{
"itemPriceSuggestions": {
"discogsPrices": [
{
"priceString": "example",
"price": 29.99,
"mediaCondition": "example",
"sleeveCondition": "example",
"notes": "example",
"seller": "example",
"shipsFrom": "example"
}
],
"discogsScrappedPrices": [
{
"priceString": "example",
"price": 29.99,
"mediaCondition": "example",
"sleeveCondition": "example",
"notes": "example",
"seller": "example",
"shipsFrom": "example"
}
],
"discogsStatistics": {
"have": 42,
"want": 42,
"lastSold": "example",
"lowest": "example",
"median": "example",
"highest": "example"
},
"discogsUrl": "example"
}
}
Arguments
| Name | Type | Description |
|---|---|---|
id | Long | Numeric item ID of the release to get price suggestions for. |
discogsId | Long | Discogs release ID to get price suggestions for. If provided, this takes precedence over id. |