"SoundCloud search suggest" via public SoundCloud API? - soundcloud

Is there a way to get results like api-v2 SoundCloud search suggest via public SoundCloud API? Also where will the api-v2 be available for 3rd party application use?

Related

Can we search all the public post referring a particular keyword using Facebook Graph API?

I need to get all facebook posts with the sdk by searching with one word
There is no way to do this, for normal 3rd-party apps.
What you can search for via Graph API, is quite limited - https://developers.facebook.com/docs/graph-api/advanced#search
(This used to include other stuff before, searching for users, etc., but most of that has since been removed.)
There is the Public Feed API - but that is not available to normal 3rd-party apps, https://developers.facebook.com/docs/public_feed/:
Access to the Public Feed API is restricted to a limited set of media publishers and usage requires prior approval by Facebook. You cannot apply to use the API at this time.

Facebook Graph API recipe to extract public trends

Currently, is there an endpoint or some 'recipe' (similar to Twitter's) which enable a developer to capture public trends from Facebook Graph API?
This could be in any form such as, hashtags, posts or likes. The only known solution seems to be the Facebook Public Feed API but the access is limited.

Collect facebook live stream public data

Is there any API for collecting facebook public data as live feed .I read about about public feed API for collecting data but I can't apply for that right now and also Its not free,Also the Open stream API but its outdated and not supported .Is there any other way to get facebook public data as live feed ?
https://developers.facebook.com/docs/public_feed/
Access to the Public Feed API is restricted to a limited set of media publishers and usage requires prior approval by Facebook. You cannot apply to use the API at this time.
Meaning, there is no way to do that, at least not for you. It does not matter if you use PHP, Node.js or any other server language.

Facebook API - Advanced Search

I'm trying to replicate some functionality of the Facebook web interface via the API and am a bit stuck. Basically, via the web site I can enter 'Favorite pages of people named "jim"' in the search box and get a slew of results, but I haven't found a way to replicate this type of query via the API. Is such a thing possible?
As WizKid commented, Graph Search is not available with the API, you can only use the Search API for searching: https://developers.facebook.com/docs/graph-api/using-graph-api/v2.1#search
Keep in mind that public search and news feed search are not available in v2.0 anymore, see changelog: https://developers.facebook.com/docs/apps/changelog

Is it possible to use Facebook search in my app?

I'm developing a Facebook app.
I wonder if I can use the original Facebook search engine in my app via their REST API. Is it possible?
You can search over all public objects in the social graph with
https://graph.facebook.com/search?q=watermelon&type=post
q is query and type is object
Check the API docs (look for searching)
https://developers.facebook.com/docs/reference/api/