search Episode
suspend fun searchEpisode(query: String, limit: Int? = api.spotifyApiOptions.defaultLimit, offset: Int? = null, market: Market? = null): PagingObject<SimpleEpisode>
Content copied to clipboard
Get Spotify Catalog information about episodes that match the keyword string. See SearchApi.search for more information
Return
PagingObject of non-full SimpleEpisode objects ordered by likelihood of correct match
See also
Parameters
query
Search query keywords and optional field filters and operators.
market
Provide this parameter if you want to apply Track Relinking
limit
The number of objects to return. Default: 50 (or api limit). Minimum: 1. Maximum: 50.
offset
The index of the first item to return. Default: 0. Use with limit to get the next set of items
Throws
if filters are illegal or query is malformed
Sources
(source)
Link copied to clipboard