checkUsersSavedAlbums
Verify if specific Spotify albums are saved in a user's "Your Music" library by providing up to 20 album IDs using this tool.
Instructions
Check if albums are saved in the user's "Your Music" library
Input Schema
Name | Required | Description | Default |
---|---|---|---|
albumIds | Yes | Array of Spotify album IDs to check (max 20) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"albumIds": {
"description": "Array of Spotify album IDs to check (max 20)",
"items": {
"type": "string"
},
"maxItems": 20,
"type": "array"
}
},
"required": [
"albumIds"
],
"type": "object"
}