api/v1/tracks/get
- get a list of popular albums.
Note: if there are any singles, track collections or playlists in the album list, they are also counted as albums.
Params:
page
(optional) - allows you to paginate by search results from the site. There are 40 albums on each page. Default value:1
(first page).
If page number is greater than count of album pages on the site, the last page will be returned.
Request example:
(your host)/api/v1/album/get
- returns 1st page from popular albums list.
(your host)/api/v1/album/get?page=5
- returns 5th page.
api/v1/album/download
- download an album from list of albums. To find albums, this method usesalbum/get
method.
Params:
album_id
(required) - download an album with specific number in the list.page
(optional) - same as inalbum/get
.
Request example:
(your host)/api/v1/album/download?page=2&album_id=7
- download 7th album from 2nd page from the site.