SpotifyGetInfo
Retrieve detailed information about Spotify tracks, albums, artists, or playlists using their unique ID to access metadata, track listings, and artist content.
Instructions
Get detailed information about a Spotify item (track, album, artist, or playlist).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
item_id | Yes | ID of the item to get information about | |
qtype | No | Type of item: 'track', 'album', 'artist', or 'playlist'. If 'playlist' or 'album', returns its tracks. If 'artist',returns albums and top tracks. | track |
Input Schema (JSON Schema)
{
"properties": {
"item_id": {
"description": "ID of the item to get information about",
"title": "Item Id",
"type": "string"
},
"qtype": {
"default": "track",
"description": "Type of item: 'track', 'album', 'artist', or 'playlist'. If 'playlist' or 'album', returns its tracks. If 'artist',returns albums and top tracks.",
"title": "Qtype",
"type": "string"
}
},
"required": [
"item_id"
],
"type": "object"
}