Endpoint Playground
Test Crawlora's Spotify popular by country 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/spotify/popular-by-country?country_code=us" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country_code | string | No | us | Two-letter Spotify popular-in country code |
{
"countryCode": "US",
"countryName": "United States",
"hexColor": "#EB1E32",
"sections": [
{
"contentId": "CHARTS",
"title": "Charts",
"totalCount": 1,
"items": [
{
"uri": "spotify:playlist:37i9dQZEVXbLRQDuF5jeBp",
"type": "Playlist",
"title": "Top 50 - USA",
"subtitle": "Spotify",
"description": "Your daily update of the most played tracks right now - USA.",
"externalUrl": "https://open.spotify.com/playlist/37i9dQZEVXbLRQDuF5jeBp"
}
]
}
],
"supportedCountries": [
{
"code": "us",
"name": "United States"
}
],
"meta": {
"operationName": "countryHubsPage",
"sectionCount": 1,
"itemCount": 1,
"fetchedAt": "2026-05-13T19:45:00Z"
}
}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 normalized Spotify country hub shelves from Spotify's countryHubsPage Pathfinder response. The country_code parameter accepts Spotify popular-in country codes from open.spotify.com/popular-in/us.
{
"countryCode": "US",
"countryName": "United States",
"hexColor": "#EB1E32",
"sections": [
{
"contentId": "CHARTS",
"title": "Charts",
"totalCount": 1,
"items": [
{
"uri": "spotify:playlist:37i9dQZEVXbLRQDuF5jeBp",
"type": "Playlist",
"title": "Top 50 - USA",
"subtitle": "Spotify",
"description": "Your daily update of the most played tracks right now - USA.",
"externalUrl": "https://open.spotify.com/playlist/37i9dQZEVXbLRQDuF5jeBp"
}
]
}
],
"supportedCountries": [
{
"code": "us",
"name": "United States"
}
],
"meta": {
"operationName": "countryHubsPage",
"sectionCount": 1,
"itemCount": 1,
"fetchedAt": "2026-05-13T19:45:00Z"
}
}curl "https://api.crawlora.net/api/v1/spotify/popular-by-country" \
-H "x-api-key: $CRAWLORA_API_KEY"