discogs-marketplace-api-nodejs
v1.10.0
Published
Another (better ?) NodeJs library to fetch data from Discogs marketplace
Downloads
84
Readme
Discogs Marketplace API NodeJS
Another (better ?) NodeJs library to fetch data from Discogs marketplace. 💿
📂 Installation (with npm)
Run the following command in your project:
npm i discogs-marketplace-api-nodejs
▶️ Quick Start
Import DiscogsMarketplace
into your project:
// With ECMAScript 6 and +
import { DiscogsMarketplace } from 'discogs-marketplace-api-nodejs'
// With CommonJS
const DiscogsMarketplace = require('discogs-marketplace-api-nodejs').DiscogsMarketplace
🤔 Examples
- Get top 250 items, of the 2nd page, filtered by Rock, listed by newest, for a given artist
// https://www.discogs.com/sell/list?sort=listed,desc&limit=250&artist_id=244819&page=2&genre=Rock
const result = await DiscogsMarketplace.search({
limit: 250,
page: 2,
genre: 'Rock',
sort: 'Listed Newest',
searchType: 'artist_id',
searchValue: 244819,
})
- Get top 50 items, of the 1st page, listed by price lowest, on a user wantlist
// https://www.discogs.com/sell/mywants?limit=50&user=Kirian_&sort=price,asc
const result = await DiscogsMarketplace.search({
limit: 50,
page: 1,
sort: 'Price Lowest',
searchType: 'user',
searchValue: 'Kirian_',
})
- Get top 25 items, of the 1st page, listed by seller A-Z, on a release
// https://www.discogs.com/sell/release/767931?sort=seller,asc&limit=25&page=1
const result = await DiscogsMarketplace.search({
sort: 'Seller A-Z',
page: 1,
searchType: 'release_id',
searchValue: '767931',
})
- Get top 100 items, of the 1st page, listed by newest, on a string search
// https://www.discogs.com/sell/list?sort=listed,desc&limit=100&q=in+flames&page=1
const result = await DiscogsMarketplace.search({
limit: 100,
page: 1,
sort: 'Listed Newest',
searchType: 'q',
searchValue: 'in flames',
})
- Get top 25 items, of the 1st page, listed by newest, on a seller inventory
// https://www.discogs.com/seller/Kirian_/profile?sort=listed,desc&limit=25&page=1
const result = await DiscogsMarketplace.search({
sort: 'Listed Newest',
page: 1,
searchType: 'q',
searchValue: '',
seller: 'Kirian_',
})
- Get top 25 items, of the 1st page, listed by newest, on a user wantlist, on a seller inventory
// https://www.discogs.com/seller/Kirian_/mywants?sort=listed,desc&limit=25&user=Kirian_&page=1
const result = await DiscogsMarketplace.search({
sort: 'Listed Newest',
page: 1,
searchType: 'user',
searchValue: 'Kirian_',
seller: 'Kirian_',
})
📃 Data format
You can provide parameters to DiscogsMarketplace.search
function according to this interface:
interface InputInterface {
/**
* Type of elements to search.
* Default to `q`.
* | Name | Description |
* |:---------: |:--------------------------:|
* | q | Basic query search |
* | master_id | Search in a master release |
* | release_id | Search in a release |
* | label_id | Search in a label |
* | artist_id | Search in a artist |
* | user | Search in user wantlist |
*/
searchType: SearchTypeType
/**
* Value to search corresponding to searchType
*/
searchValue?: string | number
/**
* Currency
*/
currency?: CurrencyType
/**
* Genre
*/
genre?: GenreType
/**
* Styles
*/
style?: Array<StyleType>
/**
* Formats
*/
format?: Array<FormatType>
/**
* Format descriptions
*/
formatDescription?: Array<FormatDescriptionType>
/**
* Media conditions
*/
condition?: Array<ConditionType>
/**
* Year (Do not use it with `years`)
*/
year?: number
/**
* Interval of years (Do not use it with `year`)
*/
years?: {
/** Min */
min: number
/** Max */
max: number
}
/**
* Is audio sample ?
*/
isAudioSample?: boolean
/**
* Is make an offer only ?
*/
isMakeAnOfferOnly?: boolean
/**
* Expedition country
*/
from?: FromType
/**
* Seller name
*/
seller?: string
/**
* Sort elements by.
* Default to `Listed Newest`.
*/
sort?: SortType
/**
* Limit of elements to search (25 | 50 | 100 | 250).
* Default to `25`.
*/
limit?: LimitType
/**
* Page (Must be < 401 or discogs will return an error 404).
* Default to `1`.
*/
page?: number
/**
* Lang to use for Discogs.
* Default to `en`.
*/
lang?: LangType
}
If success, it will return:
interface OutputSuccessInterface {
items: Array<{
id: number
title: {
original: string
artist: string
item: string
formats: Array<string>
}
url: string
labels: Array<string>
catnos: Array<string>
imageUrl: string
description: string
isAcceptingOffer: boolean
isAvailable: boolean
condition: {
media: {
full: string
short: string
}
sleeve: {
full: string
short: string
}
}
seller: {
name: string
url: string
score: string
notes: number
}
price: {
base: string
shipping: string
}
country: {
name: string
code: string
}
community: {
have: number
want: number
}
release: {
id: number
url: string
}
}>
page: {
current: number
total: number
}
result: {
total: number
perPage: number
}
search: {
value: string | number
type: SearchTypeType
}
urlGenerated: string
}
If error, it will throw:
interface OutputErrorInterface {
message: string
code: number
}
💡 How to contribute
There is a devcontainer on that project already configured, feel free to use it.
Install dependencies with:
npm install
You can open a pull request with your new additions.
🐛 Known issues/problems
Playwright
Install system dependencies:
sudo npx playwright install-deps chromium
More information here.
👉 If you find another problem, feel free to open an issue.