Endpoint Playground
Test Crawlora's SoundCloud profile 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/profile?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 |
{
"code": 200,
"msg": "OK",
"data": {
"id": 144868900,
"username": "Lofi Girl",
"permalink": "lofi_girl",
"permalink_url": "https://soundcloud.com/lofi_girl",
"avatar_url": "https://i1.sndcdn.com/avatars-8D5zoj5ySzRF0jHc-oPZwDg-large.jpg",
"description": "study, chill, sleep, repeat.",
"followers_count": 255531,
"followings_count": 634,
"track_count": 712,
"playlist_count": 27,
"likes_count": 1032,
"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 one user/artist's profile: bio, avatar, followers/followings/track/playlist/likes counts, and verified status. Public data sourced from SoundCloud's own JSON API.
{
"code": 200,
"msg": "OK",
"data": {
"id": 144868900,
"username": "Lofi Girl",
"permalink": "lofi_girl",
"permalink_url": "https://soundcloud.com/lofi_girl",
"avatar_url": "https://i1.sndcdn.com/avatars-8D5zoj5ySzRF0jHc-oPZwDg-large.jpg",
"description": "study, chill, sleep, repeat.",
"followers_count": 255531,
"followings_count": 634,
"track_count": 712,
"playlist_count": 27,
"likes_count": 1032,
"verified": true
}
}curl "https://api.crawlora.net/api/v1/soundcloud/profile?url=<url>" \
-H "x-api-key: $CRAWLORA_API_KEY"