Platform · Music & audio

SoundCloud

Artists and their tracks.

Endpoints
3
Base price
1 cr
Source
Provider

Core

Profile

1 credit

Get a public profile by handle.

GET/v1/soundcloud/profileProfile
handlerequiredUsername without the @.
enrichoptionalarabic: add dialect, sentiment, entities and topics (+3 credits).
curl -G https://api.crawlfeed.dev/v1/soundcloud/profile \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=flume"

Music and audio

Track

1 credit

One track or sound.

GET/v1/soundcloud/trackTrack
idrequiredTrack or sound id, or its URL.
curl -G https://api.crawlfeed.dev/v1/soundcloud/track \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "id=<id>"

Tracks

1 credit

An artist's tracks.

GET/v1/soundcloud/tracksTrack[]
handlerequiredArtist handle, id or URL.
cursoroptionalFrom meta.next_cursor, to get the next page.
curl -G https://api.crawlfeed.dev/v1/soundcloud/tracks \
  -H "Authorization: Bearer $CRAWLFEED_KEY" \
  --data-urlencode "handle=flume"

Every endpoint also takes fresh=true (skip the cache, 2× price) and include_raw=true (add the platform’s own payload). See Response shape and Credits.