Use Podcast Search APIs
Listen API provides several endpoints for you to implement the same search features as our website listennotes.com:
GET /trending_searches
Fetch up to 10 most recent trending search terms on the Listen Notes platform.

GET /typeahead
Suggest search terms, podcast genres, and podcasts while typing.

GET /search
Full-text search on episodes, podcasts, or curated lists of podcasts.

GET /spellcheck
Suggest a list of words that correct the spelling errors of a search term.
Example: "evergrand stok" will be corrected as "evergrande stock":

GET /related_searches
Suggest related search terms. The results are more comprehensive than from **GET /typeahead**.
- GET /typeahead optimizes for speed (i.e., suggest as you type), while GET /related_searches optimizes for accuracy (and it's a bit slower).
