Endpoint Playground
Test Crawlora's SoundCloud playlist API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/soundcloud/playlist?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Full soundcloud.com playlist/album URL (a playlist's permalink_url) |
{
"code": 200,
"msg": "OK",
"data": {
"id": 123456789,
"title": "Lofi Chill",
"permalink_url": "https://soundcloud.com/lofi_chill/sets/lofi-chill",
"track_count": 416,
"likes_count": 1024,
"public": true,
"owner": {
"id": 987654321,
"username": "lofi_chill",
"permalink_url": "https://soundcloud.com/lofi_chill",
"followers_count": 50000
},
"tracks": [
{
"id": 1004445667,
"title": "My Love",
"permalink_url": "https://soundcloud.com/david_sanya/my-love",
"playback_count": 12000,
"uploader": {
"id": 171315858,
"username": "David Sanya",
"permalink_url": "https://soundcloud.com/david_sanya"
}
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns one playlist or album's metadata plus its full track list: owner, likes/reposts counts, and every track's title, artwork, and playback/likes counts. Public data sourced from SoundCloud's own JSON API.
{
"code": 200,
"msg": "OK",
"data": {
"id": 123456789,
"title": "Lofi Chill",
"permalink_url": "https://soundcloud.com/lofi_chill/sets/lofi-chill",
"track_count": 416,
"likes_count": 1024,
"public": true,
"owner": {
"id": 987654321,
"username": "lofi_chill",
"permalink_url": "https://soundcloud.com/lofi_chill",
"followers_count": 50000
},
"tracks": [
{
"id": 1004445667,
"title": "My Love",
"permalink_url": "https://soundcloud.com/david_sanya/my-love",
"playback_count": 12000,
"uploader": {
"id": 171315858,
"username": "David Sanya",
"permalink_url": "https://soundcloud.com/david_sanya"
}
}
]
}
}curl "https://api.crawlora.net/api/v1/soundcloud/playlist?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"