Platform · Music & audio
SoundCloud
Artists and their tracks.
- Endpoints
- 3
- Base price
- 1 cr
- Source
- Provider
| Endpoint | Returns | Credits |
|---|---|---|
| GET /v1/soundcloud/profile | Profile | 1 |
| GET /v1/soundcloud/track | Track | 1 |
| GET /v1/soundcloud/tracks | Track[] | 1 |
Core
Profile
1 creditGet a public profile by handle.
| handle | required | Username without the @. |
| enrich | optional | arabic: 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 creditOne track or sound.
| id | required | Track 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 creditAn artist's tracks.
| handle | required | Artist handle, id or URL. |
| cursor | optional | From 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.