This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
10.6 Resources: events
| Resource | Method |
| /events/ | GET |
| /events/{event_id} | GET |
GET /events
Type: Collection of Events
Retrieves a list of the logged in user’s events.
Parameters
| Name | Type | Description |
filter |
enumeration (all, comment, track, shared_to, favorite, fan) | Filter on this event type |
$ curl 'http://api.soundcloud.com/events'
< HTTP/1.1 200 OK
<?xml version="1.0" encoding="UTF-8"?>
<events type="array">
<event>
<created-at type="datetime">2008-04-04T11:05:15+02:00</created-at>
<id type="integer">4</id>
<resource_id type="integer">1</id>
<type>Comment</type>
<comment>
<id type="integer">1</id>
...
</comment>
</event>
<event>
<created-at type="datetime">2008-04-03T11:05:15+02:00</created-at>
<id type="integer">4</id>
<resource_id type="integer">1</id>
<type>Favorite</type>
<track>
<id type="integer">1</id>
...
</track>
</event>
</events>
GET /events/{event_id}
Shows the given event and its related resource.
Type: Event
$ curl 'http://api.soundcloud.com/event/1'
< HTTP/1.1 200 OK
<?xml version="1.0" encoding="UTF-8"?>
<event>
<created-at type="datetime">2008-04-03T11:05:15+02:00</created-at>
<id type="integer">4</id>
<resource_id type="integer">1</id>
<type>Favorite</type>
<track>
<id type="integer">1</id>
...
</track>
</event>






