Endpoint Playground
Test Crawlora's SoundCloud search 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/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Search text | |
| limit | integer | No | Number of tracks to return (default 20, max 50) |
{
"code": 200,
"msg": "OK",
"data": {
"query": "lofi hip hop",
"count": 20,
"tracks": [
{
"id": 417474360,
"title": "Chill Study Beats - Lofi Hip Hop Mix [2018]",
"permalink_url": "https://soundcloud.com/nigeldelviero/chill-study-beats-lofi-hip-hop-mix-2018",
"artwork_url": "https://i1.sndcdn.com/artworks-000321524016-jw118f-large.jpg",
"genre": "Hip-hop & Rap",
"tag_list": "Lo-Fi Relax Chill",
"duration_ms": 7200255,
"playback_count": 4810593,
"likes_count": 93943,
"comment_count": 4835,
"reposts_count": 2218,
"created_at": "2018-03-22T08:35:48Z",
"public": true,
"streamable": true,
"uploader": {
"id": 154582242,
"username": "nigeldelviero",
"permalink": "nigeldelviero",
"permalink_url": "https://soundcloud.com/nigeldelviero",
"city": "Jakarta",
"followers_count": 4113,
"track_count": 2
}
}
]
}
}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 tracks matching a query: title, artwork, playback/likes/comment/repost counts, and uploader. Public data sourced from SoundCloud's own JSON API.
{
"code": 200,
"msg": "OK",
"data": {
"query": "lofi hip hop",
"count": 20,
"tracks": [
{
"id": 417474360,
"title": "Chill Study Beats - Lofi Hip Hop Mix [2018]",
"permalink_url": "https://soundcloud.com/nigeldelviero/chill-study-beats-lofi-hip-hop-mix-2018",
"artwork_url": "https://i1.sndcdn.com/artworks-000321524016-jw118f-large.jpg",
"genre": "Hip-hop & Rap",
"tag_list": "Lo-Fi Relax Chill",
"duration_ms": 7200255,
"playback_count": 4810593,
"likes_count": 93943,
"comment_count": 4835,
"reposts_count": 2218,
"created_at": "2018-03-22T08:35:48Z",
"public": true,
"streamable": true,
"uploader": {
"id": 154582242,
"username": "nigeldelviero",
"permalink": "nigeldelviero",
"permalink_url": "https://soundcloud.com/nigeldelviero",
"city": "Jakarta",
"followers_count": 4113,
"track_count": 2
}
}
]
}
}curl "https://api.crawlora.net/api/v1/soundcloud/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"