get_track_uris
Retrieve Spotify track URIs by providing song details (name and artist) for easy playlist creation or integration with Spotify's API. Unfound songs are automatically excluded.
Instructions
Look up Spotify track URIs for a list of songs.
Args:
songs: List of dictionaries containing song information.
Each dictionary should have 'name' and 'artist' keys.
Example: [{"name": "Yesterday", "artist": "The Beatles"}]
Returns:
List of Spotify track URIs for the found songs.
Songs that couldn't be found will be skipped.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
songs | Yes |
Input Schema (JSON Schema)
{
"properties": {
"songs": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Songs",
"type": "array"
}
},
"required": [
"songs"
],
"title": "get_track_urisArguments",
"type": "object"
}