View who liked a song on soundcloud api? - api

I want to access a list of who liked a certain sound. I know that with users, you can go to their /followers JSON and retrieve info on the user's followers, 50 users at a time. Is there a way to do that with likes on a single sound?

Related

How to get all users' steam id

I'm trying to get all users' Steam id on Steam. I've tried to use steam API, but there's no method to find every player on steam.
How can I get all the players IDs on steam ?
I think Steam will not allow to fetch all Users with one command. To transfer this big data within one or two function calls will let the server go in their knees. On the other side the user have to set their profiel public that you can search them. But you can fetch the Steam users about the friendlist and if the friends profile ispublicthen you can fetch their friends and so on.

Is there a way to get four square users twitter id using foursquare API

Is there a way to get four square users twitter id using foursquare API
I have checked the gnip API, i have contacted them but the said it only supports enterprises
I need the users twitter id who checkin to specific locations using Foursquare so i can allow my users to communicate with them on my website
I need Anonymous users data and specifically not my friends data
Have a look at the Four Square API's documentation for a good place to start... It appears that this information is potentially available, however it might be dependent on you being "friends" with them or not:
If the user is a friend, contact information, Facebook ID, and Twitter handle and the user's last checkin may also be present.
The users endpoint will return a user object: This is available in their Compact and Complete objects, but not their "Mini" object.
contact: An object containing none, some, or all of twitter, facebook, email, and phone. Both are strings.

Get a list of pics a user likes on Instagram

is there a way to get a list (ideally XML or Json) of what pictures a specific user likes on Instagram?
I had a look at the Instagram APIs but there's nothing like this. This would be have the same informations I can see in the News => Following menu but not limited to few hours.
There is no public API for accessing other user's likes, you can only get logged-in user's likes using this endpoint: http://instagram.com/developer/endpoints/likes/

How To Display Number of People Who Have Me In Google+ Circles?

I have a website that displays the number of Twitter followers, Facebook fans, and LinkedIn connections on each individual account of mine. My problem is with Google+ – I can't seem to find in their API how I can retrieve this information. I want to retrieve/display the number of people who have me on their circles. Is there a way to do this?
Currently the only way to show the number of followers you have on Google+ is to use the badge: https://developers.google.com/+/web/badge/
The API currently only lets you call people.list() to show the number of people you are following.

Question about twitter api

I want to create a simple Twitter application, but I have a problem. I want to show the user information about his followers, but this requires one API request to get a list of all user IDs following him, and then many additional API requests to get the user information corresponding to the user IDs that were just fetched. Is it possible to get user info for many followers in one request?
Use the Followers method:
http://api.twitter.com/1/statuses/followers.xml (Twitter API Documenation)
It returns detailed information about each follower.