login($credentials->getLogin(), $credentials->getPassword()); // we need instagram user id $profile = $api->getProfile('starwars'); sleep(1); $storyHighlights = $api->getStoryHighlightsFolder($profile->getId()); sleep(1); dump($storyHighlights); foreach ($storyHighlights->getFolders() as $folder) { $folder = $api->getStoriesOfHighlightsFolder($folder); dd($folder->getStories()); } } catch (InstagramException $e) { print_r($e->getMessage()); } catch (CacheException $e) { print_r($e->getMessage()); }