GET audio/getAll
Returns a list of audio
URL:
http://mobileroadie.com/api/audio/getAll
Formats
XML, JSON, HTML
HTTP Method(s):
GET
Parameters:
-
api_key
-
Required
-
-
offset
-
For pagination. Default is set to 0.
-
-
limit
-
Limit the number of results returned. Default is 50.
-
Usage Example
http://mobileroadie.com/api/audio/getAll/key/4d4ba30d73b77f7/range/past/limit/10/format/xml
Code Example
<?php $handle = curl_init("https://mobileroadie.com/api/audio/getAll/key/4d4ba30d73b77f7/limit/10/format/xml"); curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_ANY); $response = curl_exec($handle); curl_close($handle); ?>
Example XML Response
<?xml version="1.0" encoding="utf-8"?> <xml> <item> <id>3440</id> <created>2010-01-29 12:21:27</created> <artist>The Bloody Beetroots</artist> <title>Butter</title> <album>Rombo EP</album> <label>DIM MAK</label> <description></description> <sequence>7</sequence> <lyrics></lyrics> <content_url>http://mobileroadie.com/getaudio/3440</content_url> <url_linkshare></url_linkshare> <img>http://dv1.mblrd.com/i/480-480/c/aHR0cDovL21vYmlsZXJvYWRpZS5jb20vZmlsZXMvdXBsb2Fkcy8yYS8yYTc1ZjkwMDdjNTA4OTg5OTBmYjE4NzRiMzk0NzI4Mw,,</img> </item>
Comments
0 comments
Please sign in to leave a comment.