New Activities

Today we announce new activities available over the API. As a reminder: Activites are the items on your Dashboard.

The activities resource now supports favoritings and comments. They look like this:

{
  "type": "comment",
  "created_at": "2011/07/21 10:07:50 +0000",
  "origin": {
    "id": 123456,
    "body": "I like this track a lot",
    ...
    "user": {
      "id": 12,
      ...
    },
    "track": {
      "id": 123456,
      ...
    }
  },
  "tags": "affiliated"
}

{
  "type": "favoriting",
  "created_at": "2011/07/22 06:50:39 +0000",
  "origin": {
    "track": {
      "id": 123456,
      "title": "My new nice track",
      ...
    },
    "user": {
      "id": 12,
    }
  },
  "tags": "affiliated"
},

Also, you are now able to filter recent comments and favoritings that happened on your own tracks via

https://api.soundcloud.com/me/activities/all/own?oauth_token=A_VALID_TOKEN

The documentation can be found here.