SoundCloud Scraper

ENDPOINTS
GET/users/comments

User Comments

Get the comments a user posted, newest first, each with the track it was left on.

QUERY PARAMS

SoundCloud profile link, numeric ID, URN or username permalink.

Examples:

  • Permalink: billieeilish
  • Link: https://soundcloud.com/billieeilish
  • ID: 87105617

Opaque pagination cursor. Pass the next_cursor value from the previous response to get the next page. Omit for the first page.

Results per page.

Default: 50

Allowed values: 1-200

{
  "user_id": 87105617,
  "comments": [
    {
      "id": 340872166,
      "text": "this is bad lol",
      "timestamp_ms": 93279,
      "timestamp": "1:33",
      "created_at": "2017-04-12T04:31:12Z",
      "track": {
        "id": 223782117,
        "title": "Fingers Crossed",
        "link": "https://soundcloud.com/billieeilish/fingers-crossed",
        "duration_ms": 229167,
        "duration": "3:49",
        "artwork": {
          "link": "https://i1.sndcdn.com/artworks-000129485729-0b2ymj-t500x500.jpg",
          "original_link": "https://i1.sndcdn.com/artworks-000129485729-0b2ymj-original.jpg"
        },
        "user": {
          "id": 87105617,
          "username": "Billie Eilish",
          "link": "https://soundcloud.com/billieeilish",
          "permalink": "billieeilish",
          "full_name": "Billie Eilish",
          "avatar": {
            "link": "https://i1.sndcdn.com/avatars-V2fT1gZ1s4eokCrM-RnxA3g-t500x500.jpg",
            "original_link": "https://i1.sndcdn.com/avatars-V2fT1gZ1s4eokCrM-RnxA3g-original.jpg"
          },
          "city": null,
          "country_code": null,
          "followers_count": 3943858,
          "is_verified": true
        }
      }
    },
    {
      "id": 256243117,
      "text": "@michaelenwright: Thank you so much for the writeup! Can't believe it!",
      "timestamp_ms": 60906,
      "timestamp": "1:00",
      "created_at": "2015-11-20T02:42:07Z",
      "track": {
        "id": 233719633,
        "title": "Ocean Eyes",
        "link": "https://soundcloud.com/billieeilish/ocean-eyes",
        "duration_ms": 200456,
        "duration": "3:20",
        "artwork": {
          "link": "https://i1.sndcdn.com/artworks-000194211850-6zfpyg-t500x500.jpg",
          "original_link": "https://i1.sndcdn.com/artworks-000194211850-6zfpyg-original.jpg"
        },
        "user": {
          "id": 87105617,
          "username": "Billie Eilish",
          "link": "https://soundcloud.com/billieeilish",
          "permalink": "billieeilish",
          "full_name": "Billie Eilish",
          "avatar": {
            "link": "https://i1.sndcdn.com/avatars-V2fT1gZ1s4eokCrM-RnxA3g-t500x500.jpg",
            "original_link": "https://i1.sndcdn.com/avatars-V2fT1gZ1s4eokCrM-RnxA3g-original.jpg"
          },
          "city": null,
          "country_code": null,
          "followers_count": 3943858,
          "is_verified": true
        }
      }
    }
  ],
  "next_cursor": "256243117",
  "has_more": true
}