get_album
Retrieve detailed information about a Spotify album, including its name, artists, release date, total tracks, popularity, genres, and cover images.
Instructions
Get detailed information about an album
Arguments: album_id (str): Spotify album ID to get information for market (str, optional): Market/country code for album availability (default: "US")
Returns: Dict[str, Any]: - success (bool): Whether the operation was successful - album (Dict): Detailed album information containing: - id (str): Spotify album ID - name (str): Album name - album_type (str): Type of album (album, single, compilation) - release_date (str): Release date - total_tracks (int): Number of tracks - popularity (int): Album popularity score (0-100) - spotify_url (str): Spotify album URL - artists (List[Dict]): List of artists with: - id (str): Artist ID - name (str): Artist name - images (List[Dict]): Album cover images - genres (List[str]): List of genres - message (str): Success message - error (str, optional): Error message if failed
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| album_id | Yes | ||
| market | No | US |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |