Skip to content

Latest commit

 

History

History
69 lines (52 loc) · 1.66 KB

fetching-spotify-featured-content.md

File metadata and controls

69 lines (52 loc) · 1.66 KB

Fetching Spotify Featured Content

If you wish to access content that's featured and/or curated by Spotify there are a number of methods available to achieve that.

Getting a list of new releases

$releases = $api->getNewReleases([
    'country' => 'se',
]);

foreach ($releases->albums->items as $album) {
    echo '<a href="' . $album->external_urls->spotify . '">' . $album->name . '</a> <br>';
}

Getting a list of featured playlists

$playlists = $api->getFeaturedPlaylists([
    'country' => 'se',
    'locale' => 'sv_SE',
    'timestamp' => '2015-01-17T21:00:00', // Saturday night
]);

foreach ($playlists->playlists->items as $playlist) {
    echo '<a href="' . $playlist->external_urls->spotify . '">' . $playlist->name . '</a> <br>';
}

Getting a list of Spotify categories

$categories = $api->getCategoriesList([
    'country' => 'se',
    'locale' => 'sv_SE',
    'limit' => 10,
    'offset' => 0,
]);

foreach ($categories->categories->items as $category) {
    echo '<a href="' . $category->href . '">' . $category->name . '</a><br>';
}

## Getting a single Spotify category

```php
$category = $api->getCategory('dinner', [
    'country' => 'se',
]);

echo '<a href="' . $category->href . '">' . $category->name . '</a>';

Getting a category's playlists

$playlists = $api->getCategoryPlaylists('dinner', [
    'country' => 'se',
    'limit' => 10,
    'offset' => 0
]);

foreach ($playlists->playlists->items as $playlist) {
    echo '<a href="' . $playlist->href . '">' . $playlist->name . '</a><br>';
}

Please see the method reference for more available options for each method.