Skip to content
DocumentationAPI Reference

Remove User's Saved Audiobooks

me.audiobooks.remove(AudiobookRemoveParams**kwargs)
DELETE/me/audiobooks

Remove one or more audiobooks from the Spotify user's library.

ParametersExpand Collapse
ids: str

A comma-separated list of the Spotify IDs. For example: ids=18yVqkdbdRvS24c0Ilj2ci,1HGw3J3NxZO1TP1BTtVhpZ. Maximum: 50 IDs.

Remove User's Saved Audiobooks

import os
from spotted import Spotted

client = Spotted(
    access_token=os.environ.get("SPOTIFY_ACCESS_TOKEN"),  # This is the default and can be omitted
)
client.me.audiobooks.remove(
    ids="18yVqkdbdRvS24c0Ilj2ci,1HGw3J3NxZO1TP1BTtVhpZ,7iHfbu1YPACw6oZPAFJtqe",
)
Returns Examples