41 lines
576 B
Markdown
41 lines
576 B
Markdown
# music-downloader
|
|
|
|
## search albums
|
|
|
|
`GET /search?q=`
|
|
|
|
## download album
|
|
|
|
`GET /download-album/{album_id}`
|
|
|
|
# monochrome api docs
|
|
|
|
Host - https://api.monochrome.tf
|
|
|
|
429 status if rate limited
|
|
|
|
```json
|
|
{ "detail": "Upstream rate limited" }
|
|
```
|
|
|
|
## search
|
|
|
|
```
|
|
/search?al= // for albums
|
|
/search?a= // for artists
|
|
```
|
|
|
|
## track info
|
|
|
|
here is gonna be track manifest with download url (if it's not encrypted)
|
|
|
|
/track?id={track_id}
|
|
|
|
## album info
|
|
|
|
/album?id={album_id}
|
|
|
|
# credits
|
|
|
|
idea to use monochrome api and download files from it - https://gitlab.com/g33kphr33k/musicgrabber
|