Endpoint Playground
Test Crawlora's Spotify shows 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/spotify/shows/search?q=hello&offset=0&limit=20" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | hello | Search term |
| offset | integer | No | 0 | Search offset |
| limit | integer | No | 20 | Result limit, clamped to 1-50 |
{
"code": 200,
"msg": "OK",
"data": {
"searchTerm": "chatgpt",
"results": [
{
"uri": "spotify:show:example",
"title": "Example Show"
}
]
}
}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 Web Player show search results for a search term.
{
"code": 200,
"msg": "OK",
"data": {
"searchTerm": "chatgpt",
"results": [
{
"uri": "spotify:show:example",
"title": "Example Show"
}
]
}
}curl "https://api.crawlora.net/api/v1/spotify/shows/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"