Endpoint Playground
Test Crawlora's Spotify featured charts 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/featured-charts-by-country?country_code=id&content_id=CHARTS" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| country_code | string | No | id | Two-letter Spotify popular-in country code |
| content_id | string | No | CHARTS | Country hub content ID. Allowed: CHARTS, POPULAR_ALBUMS, POPULAR_ARTISTS, TRENDING_SONGS |
{
"countryCode": "ID",
"countryName": "Indonesia",
"hexColor": "#F037A5",
"contentId": "CHARTS",
"title": "Featured Charts",
"items": [
{
"uri": "spotify:playlist:37i9dQZEVXbObFQZ3JLcXt",
"type": "Playlist",
"title": "Top 50 - Indonesia",
"subtitle": "Spotify",
"description": "Your daily update of the most played tracks right now - Indonesia.",
"externalUrl": "https://open.spotify.com/playlist/37i9dQZEVXbObFQZ3JLcXt",
"attributes": {
"rank_type": "plays",
"chart_entity_type": "track"
}
}
],
"meta": {
"operationName": "countryHubContent",
"itemCount": 1,
"fetchedAt": "2026-05-13T20:03:43Z"
}
}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 content from Spotify's countryHubContent Pathfinder response. Defaults to the CHARTS content shelf for the requested country.
{
"countryCode": "ID",
"countryName": "Indonesia",
"hexColor": "#F037A5",
"contentId": "CHARTS",
"title": "Featured Charts",
"items": [
{
"uri": "spotify:playlist:37i9dQZEVXbObFQZ3JLcXt",
"type": "Playlist",
"title": "Top 50 - Indonesia",
"subtitle": "Spotify",
"description": "Your daily update of the most played tracks right now - Indonesia.",
"externalUrl": "https://open.spotify.com/playlist/37i9dQZEVXbObFQZ3JLcXt",
"attributes": {
"rank_type": "plays",
"chart_entity_type": "track"
}
}
],
"meta": {
"operationName": "countryHubContent",
"itemCount": 1,
"fetchedAt": "2026-05-13T20:03:43Z"
}
}curl "https://api.crawlora.net/api/v1/spotify/featured-charts-by-country" \
-H "x-api-key: $CRAWLORA_API_KEY"