Home

If you like what I'm doing please buy me a drink via PayPal or click on Ads to support me keeping this alive and free!


 
 
Getting Started with ONMVOICE API (Beta Version)
 
The ONMVOICE API enables developers to interact with the ONMVOICE website programmatically via simple HTTP requests. All methods are HTTP requests. Some requests require authentication if the data is private or personalized. All responses are JSON objects.
 

 
Audios
Every audio has a unique ID. You can fetch the data associated with an audio by fetching
http://api.onmvoice.com/audio/ID
 

 
Playlists
Every playlist has a unique ID. You can fetch the data associated with a playlist by fetching
http://api.onmvoice.com/playlist/ID
 

 
Users
Every user has a unique ID. You can fetch the data associated with a user by fetching
http://api.onmvoice.com/user/ID
You can also fetch the data associated with a user by username by fetching
http://api.onmvoice.com/username/USERNAME
You can fetch the audios uploaded by a user by fetching
http://api.onmvoice.com/user/ID/audios
You can fetch the playlists created by a user by fetching
http://api.onmvoice.com/user/ID/playlists
You can fetch the user's following by fetching
http://api.onmvoice.com/user/ID/following
You can fetch the user's followers by fetching
http://api.onmvoice.com/user/ID/followers
 

 
Search
You can search over all public objects by fetching
http://api.onmvoice.com/search?q=QUERY_STRING&type=OBJECT_TYPE
Note : We don't serve more than 1000 results for any query.
 

 
Browse
You can browse over all public audios by fetching
http://api.onmvoice.com/audios/SORT
Values for SORT : most_recent, most_played, most_liked, most_discussed
You can browse over all public playlists by fetching
http://api.onmvoice.com/playlists/most_recent
You can browse over all public users by fetching
http://api.onmvoice.com/users/SORT
Values for SORT : last_visit, most_followed
Note : We don't serve more than 1000 results for any query.
 

 
Authorization
Coming Soon !
 

 
Query Parameters
Name Definition
q The q parameter specifies a search query term. Note that any spaces, quotes or other punctuation in the parameter value must be URL-escaped.
type The type parameter specifies the type of the object. Valid values for this parameter are audio, playlist, and user. The default value for this parameter is audio.
time The time parameter restricts the search within the specified time. Valid values for this parameter are today, this_month, and all_time. The default value for this parameter is all_time.
max The max parameter specifies the maximum number of results that should be included in the result set.
 

 
 

© 2012 ONMVOICE