Endpoint Playground
Test Crawlora's SoundCloud user tracks 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/user-tracks?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| url | string | Yes | Full soundcloud.com user/artist profile URL | |
| limit | integer | No | Number of tracks to return (default 20, max 50) |
{
"code": 200,
"msg": "OK",
"data": {
"profile_url": "https://soundcloud.com/lofi_girl",
"count": 20,
"tracks": [
{
"id": 2380857462,
"title": "sunken relics",
"permalink_url": "https://soundcloud.com/lofi_girl/sunken-relics",
"genre": "Lo-Fi",
"playback_count": 282,
"likes_count": 12,
"created_at": "2026-08-13T10:53:01Z",
"public": true,
"streamable": true,
"uploader": {
"id": 144868900,
"username": "Lofi Girl",
"permalink_url": "https://soundcloud.com/lofi_girl",
"verified": true
}
}
]
}
}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 a user/artist's own uploaded tracks, most recent first: title, artwork, playback/likes/comment/repost counts. Public data sourced from SoundCloud's own JSON API.
{
"code": 200,
"msg": "OK",
"data": {
"profile_url": "https://soundcloud.com/lofi_girl",
"count": 20,
"tracks": [
{
"id": 2380857462,
"title": "sunken relics",
"permalink_url": "https://soundcloud.com/lofi_girl/sunken-relics",
"genre": "Lo-Fi",
"playback_count": 282,
"likes_count": 12,
"created_at": "2026-08-13T10:53:01Z",
"public": true,
"streamable": true,
"uploader": {
"id": 144868900,
"username": "Lofi Girl",
"permalink_url": "https://soundcloud.com/lofi_girl",
"verified": true
}
}
]
}
}curl "https://api.crawlora.net/api/v1/soundcloud/user-tracks?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"