Hello guys. I was searching for a cute api wrapper for soundcloud. I didn't find any so I create mine :) .
Note: this project is not complete at all. But is easy to complete! Do not hesitate to PR or Clone ;-) . Just remember the MIT license.
You should use composer to install it, and it's sooooo easy to install:
composer require 'nekland/soundcloud-api'
It's also so easy to use:
$soundcloud = new SoundCloud();
/** @var \Nekland\SoundCloudApi\Api\Tracks $tracksApi */
$tracksApi = $soundcloud->api('tracks');
$dataForTrack = $trackApi->getTrackFromLink('https://soundcloud.com/serious-url/lemaitre-high-tide');
You can check the Api
namespace to learn more.