I suggest you have a look at the API wiki, particularly this[1] page,
which lists all the data you can currently get about Users, Tracks,
Playlists etc.
What you mention in your question is directly available by just
issuing a GET to /users/{user-id} or /tracks/{track-id}
Greets,
Lorenzo // API Team
> --
> You received this message because you are subscribed to the Google Groups "SoundCloudAPI" group.
> To post to this group, send email to soundc...@googlegroups.com.
> To unsubscribe from this group, send email to soundcloudap...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/soundcloudapi?hl=en.
>
>
Cheers,
Johan
--
Johan Uhle
API Developer, SoundCloud
Mail: jo...@soundcloud.com
Skype: johan.uhle
Cell: +49 1577 1743814
http://soundcloud.com/diskodna
http://twitter.com/freenerd
Rosenthalerstraße 13, 10119 Berlin, Germany
What is SoundCloud?
http://soundcloud.com/tour
Send me a track?
http://soundcloud.com/diskodna/dropbox
Limited registered at Company House, Cardiff, UK. Registered Office:
London, UK. Company Number 6343600
Managing Director: Alexander Ljung
Local Branch Office Berlin, Germany: AG Charlottenburg, HRB 110657B
on SoundCloud there are public and private resources. To access
private ones, you will need to be authenticated. This can be done with
OAuth2. Several libraries exist to make authentication easier (e.g.
PHP [1] and jQuery [2]). Read more about authentication here [3].
/me is obviously a private resource that needs authentication.
But I assume, that it might be sufficient for you to only access
public resources, thus you will not need authentication then. To
access a specific user, you can use the public resource GET
/users/{user-id} [4]. To get the user-id, you can use the resolver
[5].
Hope this helps you. You should also browse and read a bit in the
documentation [6], to get a better understanding of the API.
Best,
Johan // SoundCloud API Developer
[1] https://github.com/mptre/php-soundcloud/
[2] https://github.com/soundcloud/SoundCloud-API-jQuery-plugin/
[3] https://github.com/soundcloud/api/wiki/02-Authentication
[4] https://github.com/soundcloud/api/wiki/10.1-Resources%3A-users
[5] https://github.com/soundcloud/api/wiki/12-Resolver
[6] https://github.com/soundcloud/api/wiki/