SpotifySearch
Search for tracks, albums, artists, or playlists on Spotify using specific search terms and filters to find music content.
Instructions
Search for tracks, albums, artists, or playlists on Spotify.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of items to return | |
qtype | No | Type of items to search for (track, album, artist, playlist, or comma-separated combination) | track |
query | Yes | query term |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"description": "Maximum number of items to return",
"title": "Limit"
},
"qtype": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "track",
"description": "Type of items to search for (track, album, artist, playlist, or comma-separated combination)",
"title": "Qtype"
},
"query": {
"description": "query term",
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}