nekland/soundcloud-api

Simple library you can build you're api upon.

dev-master 2014-04-14 22:13 UTC

This package is auto-updated.

Last update: 2024-03-26 00:33:51 UTC


README

Scrutinizer Code Quality Build Status

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.

Installation

You should use composer to install it, and it's sooooo easy to install:

composer require 'nekland/soundcloud-api'

Usage

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.