Skip to main content

SoundCloud

Base URL: https://drain.lat/api/v1/soundcloud
Fetch a public SoundCloud profile.
GET /api/v1/soundcloud/profile/:username
username
string
required
The SoundCloud username to look up.
curl "https://drain.lat/api/v1/soundcloud/profile/deadmau5" \
  -H "x-api-key: YOUR_API_KEY"
username
string
SoundCloud username.
displayName
string
Display name.
bio
string
Profile bio.
avatarUrl
string
Avatar image URL.
followers
number
Follower count.
tracks
number
Total number of tracks.
profileUrl
string
Link to the SoundCloud profile.
Response
{
  "username": "deadmau5",
  "displayName": "deadmau5",
  "bio": "just makin music.",
  "avatarUrl": "https://i1.sndcdn.com/avatars-...",
  "followers": 4800000,
  "tracks": 312,
  "profileUrl": "https://soundcloud.com/deadmau5",
  "scrapedAt": "2026-05-05T12:00:00.000Z"
}