Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 565 Bytes

searching-the-spotify-catalog.md

File metadata and controls

12 lines (9 loc) · 565 Bytes

Searching the Spotify Catalog

The whole Spotify catalog, including playlists, can be searched in various ways. Since the Spotify search contains so many features, this page just includes a basic example and one should refer to the Spotify documentation and method reference for more information.

$results = $api->search('blur', 'artist');

foreach ($results->artists->items as $artist) {
    echo $artist->name, '<br>';
}