get_item_info
Retrieve detailed metadata for Spotify items such as tracks, albums, artists, or playlists by specifying the item ID and type to access specific music-related information.
Instructions
Get detailed information about a Spotify item.
Args:
item_id: Item ID
qtype: Type ('track', 'album', 'artist', 'playlist')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item_id | Yes | ||
qtype | No | track |
Input Schema (JSON Schema)
{
"properties": {
"item_id": {
"title": "Item Id",
"type": "string"
},
"qtype": {
"default": "track",
"title": "Qtype",
"type": "string"
}
},
"required": [
"item_id"
],
"title": "get_item_infoArguments",
"type": "object"
}