Endpoint Playground
Test Crawlora's Spotify episodes 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/episodes/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:episode:example",
"title": "Example Episode"
}
]
}
}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 episode search results for a search term.
{
"code": 200,
"msg": "OK",
"data": {
"searchTerm": "chatgpt",
"results": [
{
"uri": "spotify:episode:example",
"title": "Example Episode"
}
]
}
}curl "https://api.crawlora.net/api/v1/spotify/episodes/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"