SoundCloud Video Search API

 
 
If you are using Camideo Video Search API to search video and song from SoundCloud, then can add all the filters supported by SoundCloud to narrow down your search. You will be getting a uniform JSON response from us.
 
You can easily make calls to our SoundCloud Video Search API by simply calling this url:

					http://api.camideo.com/?key=<API KEY>
						&q=chocolate&source=soundcloud&page=1&response=json
					
				
However, this is a generic call and not using any search filter. For more information on how to get the key and generic call input parameters and uniform JSON response please read our Camideo Video Search API documentation.
 
Below table describes the additional SoundCloud search filters we accept:
 

Filter

Description

Accepted Values

license Creative common license no-rights-reserved, all-rights-reserved, cc-by, cc-by-nc, cc-by-nd, cc-by-sa, cc-by-nc-nd, cc-by-nc-sa
filter Filters available to reduce the result set. all,public,private,streamable,downloadable
bpm[from] Return tracks with at least this bpm value Numeric value
bpm[to] Return tracks with at most this bpm value Numeric value
duration[from] return tracks with at least this duration (in millis) Numeric value
duration[to] return tracks with at most this duration (in millis) Numeric value
created_at[from] (yyyy-mm-dd hh:mm:ss) return tracks created at this date or later Date value
created_at[to] (yyyy-mm-dd hh:mm:ss) return tracks created at this date or earlier Date value
order Change result ordering created_at or hotness
tags The list of tags for the video. comma-separated values of tags
ids a comma separated list of track ids to filter on comma separated list
genres a comma separated list of track genres to filter on comma separated list
types a comma separated list of track types to filter on comma separated list
 
 
So a fully filtered call may look like this

					http://api.camideo.com/?key=<API KEY>
						&q=chocolate&source=soundcloud&page=1&response=json
						&license=no-rights-reserved&bpm[from]=128&bpm[to]=320
						&filter=all&ids=id1,id2&genres=genre1,genre2
						&duration[from]=1000&duration[to]=60000
						&order=hotness&tags=tag1,tag2&types=type1,type2