zgetro / php-i-tunes-api
just a wrapper of itune open api. https://github.com/ijanerik/PHP-iTunes-API
V1.0.0
2020-05-01 06:06 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-10-29 06:18:33 UTC
README
A super simple class for reading the iTunes API.
A simple search example
This example gets the results by searching for "Maroon5" in the iTunes store of the Netherlands. The results are stored in an array.
<?php
$results = iTunes::search('Maroon 5', array(
'country' => 'NL'
))->results;
?>
A simple lookup example
Get the albums of the artist with the id "909253".
<?php
$albums = iTunes::lookup(909253, 'id', array(
'entity' => 'album'
))->results;
?>
For all the config information look at the iTunes API page: