searchSpotify
Find tracks, albums, artists, or playlists on Spotify using a specific query and filter by type. Return up to 50 results for precise music discovery.
Instructions
Search for tracks, albums, artists, or playlists on Spotify
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results to return (10-50) | |
query | Yes | The search query | |
type | Yes | The type of item to search for either track, album, artist, or playlist |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of results to return (10-50)",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"query": {
"description": "The search query",
"type": "string"
},
"type": {
"description": "The type of item to search for either track, album, artist, or playlist",
"enum": [
"track",
"album",
"artist",
"playlist"
],
"type": "string"
}
},
"required": [
"query",
"type"
],
"type": "object"
}