https://github.com/indatawetrust/beatport-api
beatport unofficial api
https://github.com/indatawetrust/beatport-api
api beatport music
Last synced: about 1 year ago
JSON representation
beatport unofficial api
- Host: GitHub
- URL: https://github.com/indatawetrust/beatport-api
- Owner: indatawetrust
- Created: 2019-05-01T15:13:18.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-05T06:41:49.000Z (over 3 years ago)
- Last Synced: 2025-05-05T19:18:43.642Z (about 1 year ago)
- Topics: api, beatport, music
- Language: JavaScript
- Size: 173 KB
- Stars: 10
- Watchers: 2
- Forks: 1
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# beatport-api
[](https://travis-ci.org/indatawetrust/beatport-api)
### install
```
npm i beatport-api --save
```
### usage
```js
const beatapi = require('beatport-api');
// for genres
beatapi
.genres()
.then(genres => {
console.log(genres)
})
// for top 100
beatapi.top100()
// for genre top 100
beatapi.top100(5)
```