Endpoint Playground
Test Crawlora's Spotify Podcast Recommendations 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-podcasts/show/recommendations?uri=spotify%3Ashow%3A1QQJ7FElLE0K6CIfZNCxU4" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| uri | string | No | spotify:show:1QQJ7FElLE0K6CIfZNCxU4 | Spotify show URI |
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:show:1QQJ7FElLE0K6CIfZNCxU4",
"recommendations": [
{
"uri": "spotify:show:related",
"type": "Podcast",
"title": "Related Show",
"publisher": "Related Publisher",
"externalUrl": "https://open.spotify.com/show/related"
}
]
}
}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 related Spotify shows and episodes from Spotify's show recommendations response.
{
"code": 200,
"msg": "OK",
"data": {
"uri": "spotify:show:1QQJ7FElLE0K6CIfZNCxU4",
"recommendations": [
{
"uri": "spotify:show:related",
"type": "Podcast",
"title": "Related Show",
"publisher": "Related Publisher",
"externalUrl": "https://open.spotify.com/show/related"
}
]
}
}curl "https://api.crawlora.net/api/v1/spotify-podcasts/show/recommendations" \
-H "x-api-key: $CRAWLORA_API_KEY"